Install
$ agentstack add skill-fitclaw-10devrules-10dev ✓ 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.
About
/10dev — Orchestrator Entry Point
Environment manager and onboarding for 10 Development Rules.
Preamble (run first)
source "${CLAUDE_SKILL_DIR}/../../bin/detect-root.sh" 2>/dev/null || {
_10DEV_ROOT="$(cd "$(dirname "$0")/../.." 2>/dev/null && pwd)"
echo "10DEV_ROOT: ${_10DEV_ROOT}"
}
# Global state
_ONBOARDED=$([ -f ~/.10dev/.onboarded ] && echo "yes" || echo "no")
_HAS_PROFILE=$([ -f ~/.10dev/developer-profile.md ] && echo "yes" || echo "no")
_ROUTING_DECLINED=$([ -f ~/.10dev/.routing_declined ] && echo "yes" || echo "no")
_PROJECT_COUNT=$([ -f ~/.10dev/projects.txt ] && wc -l /dev/null || echo "unknown")
# CLAUDE.md routing
_HAS_ROUTING="no"
[ -f CLAUDE.md ] && grep -q "## Skill routing" CLAUDE.md 2>/dev/null && _HAS_ROUTING="yes"
echo "ONBOARDED: $_ONBOARDED | PROFILE: $_HAS_PROFILE | PROJECTS: $_PROJECT_COUNT"
echo "PROJECT_10DEV: $_HAS_10DEV | BOUNDARY: $_HAS_BOUNDARY | TODO: $_HAS_TODO | LESSONS: $_HAS_LESSONS"
echo "ROUTING: $_HAS_ROUTING | ROUTING_DECLINED: $_ROUTING_DECLINED"
echo "BRANCH: $_BRANCH"
Procedure
After running the preamble, read {10DEV_ROOT}/docs/10dev.md for the full orchestrator logic.
Use the preamble output to determine which phase to enter:
ONBOARDED=no→ start from Phase 1 (welcome)ONBOARDED=yes+PROJECT_10DEV=no→ start from Phase 3 (project scan)ONBOARDED=yes+PROJECT_10DEV=yes→ Phase 5 (dashboard)
Subcommand overrides:
/10dev setup→ delete~/.10dev/.onboardedand restart from Phase 1/10dev status→ jump to Phase 5 (dashboard)
When Phase 4 asks the user to pick a skill, read and execute it inline from {10DEV_ROOT}/skills/{choice}/SKILL.md.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: fitclaw
- Source: fitclaw/10devrules
- 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.