Skip to content

Instantly share code, notes, and snippets.

@discreteds
discreteds / demo-output.txt
Created February 9, 2026 06:54
GitHub Multi-Repo Manager - Skill Demo (SpoonOS Micro Challenge)
═══════════════════════════════════════════════════════════════════
SKILL DEMO: GitHub Multi-Repo Manager
═══════════════════════════════════════════════════════════════════
AGENT: Claude Code (claude-opus-4-6)
SKILLS LOADED: ["github-multi-repo-manager"]
TARGET: hiivmind (GitHub Organization)
TOOLS: gh 2.67.0, jq 1.7.1
───────────────────────────────────────────────────────────────────

Universal Claude Plugin / Skill Bootstrap Installer

Execute this bootstrap skill installer by pasting the following into a Claude chat, replacing {skill_repo} with the repo url. The plugin / skill will be installed for that one chat session.

Bootstrap this skill:
https://gist.github.com/discreteds/5f078f9788999cca8188c452498e0f3f {skill_repo}

@discreteds
discreteds / setup_dev_venv_links.sh
Created August 8, 2025 02:06
Zed IDE hack - script to create .venv symlinks in subdirectories (1 level deep)
@discreteds
discreteds / pyproject.toml
Last active October 9, 2024 04:17
Hatch config to add a virtual environment as a notebook kernel
## Default Env
[tool.hatch.envs.default.scripts]
jupyter-setup = [
"pip install ipykernel",
"python -m ipykernel install --user --name=dev1-default --display-name='Hatch: dev1-default'",
]
jupyter-remove = "jupyter kernelspec uninstall dev1-default"