Generate CLAUDE.md and AGENTS.md instruction files from curated templates based on user input, then print OS-aware deployment commands.
Generate filled-in CLAUDE.md and AGENTS.md files from the curated templates bundled in this plugin's templates/ directory. All output is staged for human review before deployment.
Run the bundled scripts from the plugin root. If you are invoking them manually from a shell outside that directory, replace the leading ./ paths below with the absolute path to the installed plugin copy.
./scripts/agent-instructions-generator/generate.py to fill templates with project-specific values and stage drafts to an output directory.[TODO] placeholders manually../scripts/agent-instructions-generator/deploy.py to print OS-aware copy or symlink commands for deploying the files to their correct locations.--approach claude-first when the team uses Claude Code exclusively.--approach agents-first when the team uses multiple coding agents or plans to in the future.sudo or elevated commands. The deploy script prints commands for the user to run manually.<!-- TODO: fill --> so they are easy to find.generate.py is safe to re-run. It overwrites only the staging directory.deploy.py only prints commands; it never writes files../references/os-paths.md for the full tier-to-path mapping across operating systems.uv run python ./scripts/agent-instructions-generator/generate.py \
--approach claude-first \
--tiers org,project,module \
--templates-dir ./templates \
--output-dir /tmp/agent-instructions-draft \
--org-name "Acme Corp" \
--project-name "billing-api" \
--tech-stack "React" \
--db-engine "MSSQL"
uv run python ./scripts/agent-instructions-generator/deploy.py \
--staged-dir /tmp/agent-instructions-draft \
--target-os macos \
--project-root /path/to/billing-api \
--module-paths src/payments,src/auth