From dstoic
Create baseline context from .in/ folder with manifest-driven organization (run once per project). Use when bootstrapping project context, setting up .ctx/ snapshot. Triggers include "create context", "bootstrap context", "setup context", "init context".
npx claudepluginhub digital-stoic-org/agent-skills --plugin dstoicThis skill is limited to using the following tools:
Bootstrap project context from `.in/` folder → `.ctx/` snapshot + baseline + RISEN INPUT table.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Bootstrap project context from .in/ folder → .ctx/ snapshot + baseline + RISEN INPUT table.
CRITICAL: After EVERY AskUserQuestion call, check if answers are empty/blank. Known Claude Code bug: outside Plan Mode, AskUserQuestion silently returns empty answers without showing UI.
If answers are empty: DO NOT proceed with assumptions. Instead:
.in/: Immutable bootstrap (user dumps raw docs, never modified by commands).ctx/: Actionable snapshot (generated: manifest + summaries + copied files)[ -d .in/ ] || error "No .in/ folder found. Create it and add source files first."
[ -d .ctx/ ] && [ "$1" != "--force" ] && error ".ctx/ exists. Use --force to recreate."
Skip security-sensitive files: .env*, *credentials*, *secrets*, *token*, *.key, *.pem, *.crt
.in/**/*.{md,txt,csv,yaml,json}Write .ctx/manifest.yaml — see reference.md for schema.
Token estimation: tokens ≈ words / 0.75 (via wc -w)
| Priority | ≤ threshold | > threshold, ≤25K | > 25K |
|---|---|---|---|
| HIGH | ≤1500 → inline | summarize directly | summarize via sub-agent |
| MEDIUM | ≤2500 → inline | summarize directly | summarize via sub-agent |
| LOW | reference only | — | — |
Copy HIGH/MEDIUM files to .ctx/, preserving subdirectory structure.
.ctx/{nn}-{basename}-summary-llm.mdsummarize-for-context) for files >25K tokensCreate CONTEXT-baseline-llm.md with inline content + summary refs + LOW references.
Target: ≤2000 tokens.
Report: file counts, RISEN INPUT table, suggest /save-context baseline.
See reference.md for manifest schema, baseline template, and validation rules.