一键导入
tasuki-onboard
Scan a codebase, detect the stack, and auto-generate a complete .tasuki/ configuration with agents, rules, hooks, skills, and TASUKI.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Scan a codebase, detect the stack, and auto-generate a complete .tasuki/ configuration with agents, rules, hooks, skills, and TASUKI.md.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | tasuki-onboard |
| description | Scan a codebase, detect the stack, and auto-generate a complete .tasuki/ configuration with agents, rules, hooks, skills, and TASUKI.md. |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash |
Run the full onboarding pipeline for the current project.
Run each detection script and capture the JSON output:
bash tasuki/src/detectors/detect-backend.sh .
bash tasuki/src/detectors/detect-frontend.sh .
bash tasuki/src/detectors/detect-database.sh .
bash tasuki/src/detectors/detect-infra.sh .
bash tasuki/src/detectors/detect-testing.sh .
Collect the results into a detection summary.
tasuki/src/profiles/ to find the best-fit stack profiletasuki/src/registry.yaml to determine which agents to activatestack_required fields:
frontend-devdb-architectdevopsplanner, qa, security, reviewerRead ~10-15 key files to understand project-specific conventions:
Extract:
Using the templates from tasuki/src/templates/ and the profile conventions:
.tasuki/agents/*.md — One file per activated agent, populated with project context.tasuki/rules/*.md — One file per detected file type, with project conventions.tasuki/hooks/protect-files.sh — Copy from template, optionally customize.tasuki/hooks/security-check.sh — Copy from template.tasuki/settings.json — Generate permissions for detected paths + tools.mcp.json — Suggest MCP servers based on profileTASUKI.md — The complete orchestration brain, using the TASUKI.md templateReplace all {{PLACEHOLDER}} values in templates with actual project values.
Tasuki Onboarding Complete
==========================
Project: {name}
Stack: {backend} + {frontend} + {database}
Agents activated (N/9):
[x] planner
[x] qa
[x] db-architect
[x] backend-dev
[ ] frontend-dev (skipped: no frontend detected)
[x] security
[x] reviewer
[x] devops
Rules: {list}
Hooks: protect-files, security-check
Skills: {list}
MCP Servers: {list}
Ready to test? Try: "Plan a small feature to verify the pipeline"
Generate and maintain compressed context summaries of the project. Used by agents to load minimal context instead of reading full files. Saves tokens and reduces latency.
Create a database migration using the project's migration tool.
Check health and status of all project services — containers, API, frontend, database, migrations.
Create a hotfix branch, apply the fix, run tests, and prepare for merge.
Write structured memory notes to the knowledge graph. Every agent uses this to record bugs, lessons, heuristics, and decisions as individual nodes with [[wikilinks]] to create a navigable graph. Two memory types -- heuristic (permanent rules) and episodic (specific events).
Switch execution mode (fast, standard, serious) or let auto-detection decide.