用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tmdgusya/mission-board --skill backend-worker命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage tasks on a Mission Board kanban — list, create, claim, update, complete, release, and review tasks via the Mission Board API. Use when the user says /mission or asks about missions/tasks on the board.
Implements CLI tool with command handlers, API client, and Bun compilation to standalone binary
Implements React dashboard components, state management, and UI features
基于 SOC 职业分类
正在显示 SKILL.md
| name | backend-worker |
| description | Implements Hono API endpoints, database operations, and business logic with Bun/SQLite |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features involving:
Write tests first (RED) - Create test file in tests/ or alongside source
bun testbun test --watch to verify tests FAIL before implementingImplement feature (GREEN) - Make tests pass
src/ directoryManual verification
bun run devcurl or HTTP clientRun validators
bun run typecheck - TypeScript validationbun run lint - Code stylebun test - All tests must passDocument API changes
{
"salientSummary": "Implemented POST /api/tasks endpoint with Zod validation, created tasks table with Drizzle, added 5 tests covering creation, validation, and duplicate prevention.",
"whatWasImplemented": "POST /api/tasks endpoint that accepts agent_id, project_id, title, description, task_type. Creates task in 'backlog' status. Returns 201 with created task. Returns 400 for invalid input. Returns 404 for non-existent project. Returns 409 for duplicate task title in same project. Added tasks table migration with indexes on project_id and status.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{
"command": "bun test tests/tasks.test.ts",
"exitCode": 0,
"observation": "5 tests passing: creates task, validates required fields, rejects invalid status, prevents duplicates, returns 404 for missing project"
},
{
"command": "bun run typecheck",
"exitCode": 0,
"observation": "No type errors"