一键导入
implement-issue
Read a GitHub issue, create a branch, implement the solution, and open a PR. Use when given an issue number to implement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Read a GitHub issue, create a branch, implement the solution, and open a PR. Use when given an issue number to implement.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Trinity Bridge manual — architecture, endpoints, commands, patterns for Perplexity-Railway-Mac-Claude Code channel. Reference for all AI agents.
Generate Zig or Verilog code from VIBEE specifications. Use when creating or updating .tri specs and regenerating code.
GOD MODE — Agent monitoring dashboard. Shows swarm status, task queue, pipeline compliance, circuit breakers, git activity, and rule violations.
Generate Zig or Verilog code from VIBEE specifications. Use when creating or updating .tri specs and regenerating code.
HEALER — diagnose, heal, commit dirty files, monitor junk & docs & duplicates, report honestly. Every loop = action + proof.
Agent swarm development dashboard — live Railway containers, issue queue, PR pipeline, JSONL events, pool utilization, and queue drain status. Use when checking agent dev tasks, spawning status, or monitoring issues #315-#319.
| name | implement-issue |
| description | Read a GitHub issue, create a branch, implement the solution, and open a PR. Use when given an issue number to implement. |
| argument-hint | ["issue-number"] |
| allowed-tools | Bash(gh *), Bash(git *), Bash(zig *), Bash(cat *), Bash(ls *), Read, Edit, Write, Grep, Glob |
Implement issue: $ARGUMENTS
Read the issue
gh issue view $ARGUMENTS --repo gHashTag/trinity
Create branch
git checkout -b feat/issue-$ARGUMENTS
Plan implementation
Implement
zig fmt)Build and test
cd /Users/playra/trinity-w1 && zig build
cd /Users/playra/trinity-w1 && zig build test
Commit
git add -A
git commit -m "feat: <description> (closes #$ARGUMENTS)"
Push and create PR
git push -u origin feat/issue-$ARGUMENTS
gh pr create --title "feat: <title>" --body "Closes #$ARGUMENTS\n\n## Changes\n- ...\n\n## Tests\n- zig build test passes"
Close issue
gh issue close $ARGUMENTS --repo gHashTag/trinity
src/ (core library), src/tri-api/ (API client), src/firebird/ (LLM engine)specs/tri/*.tri (VIBEE specifications).zig file via test "..." { ... }