Install
$ agentstack add skill-rohirik-claude-code-config-workflowguide ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Workflow Guide
Quick reference for picking the right path. Full detail: docs/workflow-daily.md · docs/workflow-dev.md
Which path?
Do you know exactly what to build? → Layer 2 (/spec) Figuring it out or moving fast? → Layer 1 (/plan)
| Situation | Layer | |-----------|-------| | Trivial one-liner | Just implement — no commands needed | | Bug fix | Layer 1: /test (ProveIt) → /simplify → /capture → /verify → /commit-push-pr | | Small feature (clear scope) | Layer 1: /plan → /build → /simplify → /capture → /verify → /commit-push-pr | | Non-trivial feature | Layer 2: /spec → /plan → /dev → /test → /simplify → /capture → /verify → /commit-push-pr |
Layer 1 — Daily Workflow
Entry: /plan. You have a task and want to move.
[observe auto-fires] → /plan → IMPLEMENT (auto-accept: Shift+Tab×2) → /capture → /simplify → /verify → /commit-push-pr
[observe]is automatic — PrePlan hook fires when/planis typed, injecting git state + topic-scoped LTM recalls- After
/planconfirms → switch to auto-accept mode (Shift+Tab×2) for implementation /testreplaces the whole chain for bug fixes (ProveIt: write failing test → fix → pass)
Layer 2 — Dev Workflow
Entry: /spec (or /test for bugs). You know what to build and want it spec-driven.
/spec → /plan → /build (or /dev) → /test → /simplify → /capture → /verify → /commit-push-pr
/spec— recalls LTM + explores codebase → writes grounded spec with testable criteria/plan— each task maps to one acceptance criterion from the spec/build= task-by-task manual control ·/dev= full automation/test— final regression sweep across all changed files
Every Path Ends The Same Way
| Step | Command | What it does | |------|---------|-------------| | Remove complexity | /simplify | code-simplifier agent — flattens nesting, removes abstraction | | Lock in context | /capture | saves progress + fires /learn in one shot | | Gate before ship | /verify | tsc → lint → tests → build → security → diff | | Ship | /commit-push-pr | conventional commit → push → PR |
> /verify is optional on small changes but mandatory before non-trivial PRs.
/build vs /dev vs /test
| Command | When | |---------|------| | /build | Manual control — review between each task | | /dev | Full automation — all tasks in one go | | /test | No plan — standalone bug fix or isolated feature |
Context-Safe Execution (context-mode MCP)
Use the sandbox tools instead of Bash whenever raw output isn't needed directly:
ctx_execute— tests, builds, type-checks, linters, log/error dumps, any command with >~1 KB outputctx_batch_execute— multiple independent commands in one callctx_execute_file— process a file without reading raw text into contextctx_fetch_and_index+ctx_search— large documentation pages (prefer over WebFetch >~5 KB)
Bash stays right for short diagnostics (git status, ls), commands whose raw output IS the answer, and interactive/TTY work.
Diagnostics: /context-mode:ctx-stats · /context-mode:ctx-doctor
Maintaining context-mode
The MCP server runs from a pre-built bundle (server.bundle.mjs), NOT from source. After editing any file in ~/.claude/plugins/marketplaces/context-mode/src/:
cd ~/.claude/plugins/marketplaces/context-mode
bunx esbuild src/server.ts --bundle --platform=node --target=node18 --format=esm \
--outfile=server.bundle.mjs \
--external:better-sqlite3 --external:turndown --external:turndown-plugin-gfm \
--external:@mixmark-io/domino --external:zod --external:@modelcontextprotocol/sdk \
--minify
pkill -f "server.bundle.mjs" # Claude Code auto-restarts it on next tool use
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: RohiRIK
- Source: RohiRIK/claude-code-config
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.