원클릭으로
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 "..." { ... }