-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
159 lines (159 loc) · 5.13 KB
/
Copy pathcatalog.json
File metadata and controls
159 lines (159 loc) · 5.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"version": 19,
"org": "pifydev",
"scope": "@pify",
"remote": "https://raw.githubusercontent.com/pifydev/cli/main/catalog.json",
"packages": [
{
"name": "ask-question",
"npm": "@pify/ask-question",
"repo": "https://github.com/pifydev/ask-question",
"description": "CC AskUserQuestion-shaped tool on built-in dialogs: 1-4 questions, multi-select, Other free-text, /ask history",
"status": "published"
},
{
"name": "btw",
"npm": "@pify/btw",
"repo": "https://github.com/pifydev/btw",
"description": "By-the-way side conversations: a read-only, codebase-aware side agent in a widget",
"status": "published"
},
{
"name": "goal",
"npm": "@pify/goal",
"repo": "https://github.com/pifydev/goal",
"description": "Pin a session goal and keep the agent anchored: ordered steps, safety limits, evidence-gated completion with an optional independent audit",
"status": "published"
},
{
"name": "memory",
"npm": "@pify/memory",
"repo": "https://github.com/pifydev/memory",
"description": "Persistent memory across sessions: two-tier markdown, FTS5 search, secret-scanned writes, opt-in LLM consolidation",
"status": "published",
"conflicts": [
"pi-memory"
]
},
{
"name": "plan-mode",
"npm": "@pify/plan-mode",
"repo": "https://github.com/pifydev/plan-mode",
"description": "Read-only planning with an approve-then-execute gate: enforced tool policy, tracked plan steps, saved-plan library, HTML export",
"status": "published",
"conflicts": [
"@narumitw/pi-plan-mode"
]
},
{
"name": "pretty",
"npm": "@pify/pretty",
"repo": "https://github.com/pifydev/pretty",
"description": "Compact theme-aware rendering for built-in tools: summaries, highlighted reads, colorized diffs, configurable caps",
"status": "published",
"conflicts": [
"pi-pretty",
"pi-pretty-tui",
"pi-tool-display"
]
},
{
"name": "subagent",
"npm": "@pify/subagent",
"repo": "https://github.com/pifydev/subagent",
"description": "Spawn scoped subagents: agent_run/agent_result, @agent mentions, custom agent types, turn caps and tool allowlists",
"status": "published"
},
{
"name": "swarm",
"npm": "@pify/swarm",
"repo": "https://github.com/pifydev/swarm",
"description": "Coordinate multiple pi agents in parallel: fan-out with auto-routing, concurrency queue, aggregated reports",
"status": "published"
},
{
"name": "task",
"npm": "@pify/task",
"repo": "https://github.com/pifydev/task",
"description": "Task tracking with dependency graph, evidence-gated completion, live widget, CC-style reminders",
"status": "published"
},
{
"name": "todo",
"npm": "@pify/todo",
"repo": "https://github.com/pifydev/todo",
"description": "Agent working-memory checklist: CC TodoWrite-style complete-replacement, next-item surfacing, live widget",
"status": "published"
},
{
"name": "usage",
"npm": "@pify/usage",
"repo": "https://github.com/pifydev/usage",
"description": "Token and cost reporting: live footer, local-history dashboard with per-project costs, and /usage context showing what fills the window",
"status": "published"
},
{
"name": "workflow",
"npm": "@pify/workflow",
"repo": "https://github.com/pifydev/workflow",
"description": "Deterministic agent orchestration: CC-style scripts with agent()/parallel()/pipeline(), schema-validated results, gates, and resume",
"status": "published"
},
{
"name": "worktree",
"npm": "@pify/worktree",
"repo": "https://github.com/pifydev/worktree",
"description": "Safe git-worktree management: create/list/merge/remove with safety rails, plus /worktree enter to take the conversation into one",
"status": "published"
},
{
"name": "yolo",
"npm": "@pify/yolo",
"repo": "https://github.com/pifydev/yolo",
"description": "A safety gradient from auto-approve-everything to ask-about-anything: four modes, secret-file gate, undo trail with git checkpoints",
"status": "published"
}
],
"bundles": [
{
"name": "suite",
"description": "Every published @pify extension",
"packages": [
"ask-question",
"btw",
"goal",
"memory",
"plan-mode",
"pretty",
"subagent",
"swarm",
"task",
"todo",
"usage",
"workflow",
"worktree",
"yolo"
]
},
{
"name": "core",
"description": "The everyday four: task tracking, planning, memory, and a safety gate",
"packages": [
"todo",
"plan-mode",
"memory",
"yolo"
]
},
{
"name": "agents",
"description": "The agent stack: subagents, parallel fan-out, scripted workflows, worktrees",
"packages": [
"subagent",
"swarm",
"workflow",
"worktree"
]
}
]
}