Initial: pi-skill — 68 skills, 43 extensions, 11 themes for Pi

This commit is contained in:
Kunthawat Greethong
2026-05-25 16:38:02 +07:00
commit 69f7d8bdda
1689 changed files with 342427 additions and 0 deletions

45
agents/pipeline-team.yaml Normal file
View File

@@ -0,0 +1,45 @@
plan-build-review:
description: "Plan, implement, and review — the standard development cycle"
review_max_loops: 3
phases:
- name: understand
description: "Clarify the task and gather context"
mode: interactive
agents:
- role: scout
task_template: "Explore the codebase and clarify the task. Summarize what needs to be done."
- name: plan
description: "Create an implementation plan"
mode: interactive
agents:
- role: planner
task_template: "Create a detailed implementation plan for: $INPUT"
- name: build
description: "Implement the plan"
mode: interactive
agents:
- role: builder
task_template: "Implement the following plan:\n\n$INPUT"
- name: review
description: "Review for quality and correctness"
mode: interactive
agents:
- role: reviewer
task_template: "Review this implementation for bugs, style, and correctness:\n\n$INPUT"
plan-build:
description: "Plan then build — fast two-step without review"
review_max_loops: 1
phases:
- name: plan
description: "Create implementation plan"
mode: interactive
agents:
- role: planner
task_template: "Plan the implementation for: $INPUT"
- name: build
description: "Implement"
mode: interactive
agents:
- role: builder
task_template: "Implement this plan:\n\n$INPUT"