npx claudepluginhub psylch/ch-project-contextInitialize a project-level context management system with docs/ directory structure, Claude Code hooks (session-start, quality-gate), and CLAUDE.md navigation. Use when starting a new project, bootstrapping context management, or when the user says '/ch-project-context init', 'init project context', 'setup context management', 'initialize docs structure'.
Production-ready workflow orchestration with 80 focused plugins, 185 specialized agents, and 153 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Share bugs, ideas, or general feedback.
A skills.sh skill for Claude Code that bootstraps a project-level context management system in one command.
Running /ch-project-context init in a Claude Code session will:
docs/ directory (exec-plans/, decisions/, research/, known-issues/, archive/).claude/settings.jsonCLAUDE.mddocs/architecture.md skeletonAll generated docs use YAML frontmatter so the hooks can parse them programmatically.
npx skills add psylch/ch-project-context -g -y
git clone https://github.com/psylch/ch-project-context.git ~/.claude/skills/ch-project-context
Restart your agent after installation.
In any Claude Code session:
/ch-project-context init
The skill detects the project root, checks for existing files (prompts before overwriting), runs the init script, and reports what was created.
After init, you can customize:
.claude/hooks/quality-gate.py -- Change BUILD_CMD from ['npx', 'tsc', '--noEmit'] to your project's build check (e.g., ['cargo', 'check'], ['ruff', 'check', '.'])docs/workflow.md -- Create this file to inject team workflow rules into every session automaticallych-project-context/
├── skills/
│ └── ch-project-context/
│ ├── SKILL.md # Skill definition and instructions
│ ├── scripts/
│ │ └── init.py # Init script (creates dirs, hooks, settings)
│ └── references/
│ └── conventions.md # Frontmatter spec, naming, and doc templates
├── .claude-plugin/
│ ├── plugin.json
│ └── marketplace.json
├── README.md
├── README.zh.md
└── LICENSE
MIT