Portable lifecycle skill bundle for Codex-style agent workflows.
Bundled skills (51):
| Group | Skills |
|---|---|
| lifecycle | apcp, project-init, project-mid, feature-init, ralph, memory-writer |
| engineering | harness-engineer, agentic-engineering, loop-engineering, vapt-init, playwright |
| design | frontend, ai-ui-design, reference-to-design-system |
| research | storm-research, prd-builder, grill-with-docs, context7, opensrc¹ |
| deliberation | the-council |
| utilities | caveman, ai-news², doc-cleanup |
| dev-workflow | agentic-review-loop, agentic-system-design, claude-code-idea-to-build-loop, claude-code-website-hacks, claude-design-workflow, fable-mode, goal-file-orchestration-prompt, in-house-ai-consultant-roadmap, phased-app-build-system, repo-to-skill, yt-to-skill |
| writing | humanize-proofreader |
| personal-ops | personal-assistant-buildout, llm-wiki-builder |
| trading | order-flow-trading, price-action-market-structure, trading-fundamentals, trend-pullback-trading |
¹
opensrc— Claude only. Usesallowed-tools: Bash(opensrc:*)frontmatter (ignored by Codex) and requires theopensrcbinary installed separately. Installs to Codex but tool permission won't auto-apply.²
ai-news— Claude only. UsesWebSearchtool and writes toraw/website/— both Claude Code-specific. Installs to Codex but won't function without equivalent tool wiring.Some
dev-workflow/design/personal-opsskills spawn dedicated subagents (arl-*,uiux-*,pab-*,pabs-*, etc). Their.mdfiles live atskills/<category>/<skill>/agents/claude/and install to~/.claude/agents/alongside the skill. Claude only — Codex has no Task/Agent-tool equivalent to auto-spawn subagents mid-skill, so these skills still run on Codex but degrade to no auto-delegation.
Claude Code + Codex, both at once:
npx @nicerst/tado install --target claude,codexOther targets:
npx @nicerst/tado install --target claude
npx @nicerst/tado install --target codex
npx @nicerst/tado install --target cursor --mode symlink
npx @nicerst/tado install --target allTarget layouts:
codex->~/.codex/skillsplus~/.codex/agents/harness-engineer.tomlagents->~/.agents/skillsclaude->~/.claude/skillsplus~/.claude/agents/harness-engineer.mdand per-skill subagents under~/.claude/agents/cursor->~/.cursor/skills
git clone <repo-url> tado
cd tado
node bin/tado.js install --target claude,codexNo npm install needed — zero external deps. Re-running the same command after git pull updates skills already on disk, or install with --mode symlink once so future git pulls update in place with no re-install step.
Cursor note:
- This package installs user skills into
~/.cursor/skills. - It does not write into Cursor's built-in
~/.cursor/skills-cursordirectory.
npm install -g @nicerst/tado
tado install --target codex,agentsScaffold a local plugin copy plus marketplace entry:
npx @nicerst/tado plugin scaffold
codex plugin add tado@personalThis creates:
- plugin files under
~/plugins/tado - marketplace entry in
~/.agents/plugins/marketplace.json
Plugin note:
- The
plugin scaffoldflow is Codex-specific. - Claude and Cursor support in this package is via direct skill installation, not plugin scaffolding.
Default mode is copy.
Use symlinks if you want one working tree to drive all installs:
npx @nicerst/tado install --target codex --mode symlink
npx @nicerst/tado plugin scaffold --mode symlinknpm test