
Gitchamber
- 15 installs
- 42 repo stars
- Updated March 29, 2026
- remorses/gitchamber
Helps with ai & agent building tasks during AI-assisted development.
About
gitchamber is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- gitchamber
- AI & Agent Building
- AI-coding skill
Gitchamber by the numbers
- 15 all-time installs (skills.sh)
- +1 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #11,165 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/remorses/gitchamber --skill gitchamberAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 15 |
|---|---|
| repo stars | ★ 42 |
| Last updated | March 29, 2026 |
| Repository | remorses/gitchamber ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
gitchamber
CLI to download source code for npm packages, PyPI packages, crates.io crates, or GitHub repos into node_modules/.gitchamber/. After fetching, analyze the files using grep, read, glob, and other tools to understand inner workings, find usage examples, read documentation, or study the source code.
Alternative to opensrc that stores in node_modules/ instead of opensrc/.
Differences from opensrc:
- Stores in `node_modules/.gitchamber/` instead of
opensrc/-- automatically ignored by git, vitest, tsc, linters, bundlers, and every other tool that skipsnode_modules/ - No file modification -- removed all
.gitignore,tsconfig.json, andAGENTS.mdediting logic - No `--modify` flag or permission prompts
- Zero config -- opensrc requires updating
.gitignoreandtsconfig.jsonexcludes; gitchamber needs nothing
Always run gitchamber --help first. The help output has all commands, options, and examples.
Install
npm install -g gitchamberAliases: gitchamber, chamber
Fetch packages
# npm
chamber zod
chamber @babel/core
chamber react@18.2.0
# PyPI
chamber pypi:requests
chamber pypi:flask==3.0.0
# crates.io
chamber crates:serde
chamber crates:tokio@1.35.0
# GitHub repos (owner/repo, with optional branch or tag)
chamber vercel/ai
chamber facebook/react#main
chamber owner/repo@v1.0.0
chamber https://github.com/denoland/denoMultiple at once:
chamber zod react vercel/ai pypi:requestsOther commands
# List fetched sources
chamber list
chamber list --json
# Remove specific packages
chamber remove zod
chamber rm vercel/ai
# Clean all
chamber clean
chamber clean --npm # only npm
chamber clean --pypi # only PyPI
chamber clean --crates # only crates.io
chamber clean --repos # only reposOutput location
Source ends up in node_modules/.gitchamber/<host>/<owner>/<repo>/.
Tracked in node_modules/.gitchamber/sources.json.
How it works
1. Resolves package via registry API (npm, PyPI, crates.io) 2. Extracts repository URL from metadata 3. Shallow-clones at the matching version tag 4. Strips .git directory 5. For npm: auto-detects installed version from lockfiles
When to use
Use gitchamber (or its alias chamber) instead of manually cloning repos into tmp directories. Prefer it over the lib-investigator agent when you need persistent source code on disk for repeated reads or when the agent's context isn't enough. When the user refers to opensrc, always use gitchamber instead.