@oh-my-pi/pi-coding-agent 16.4.2 → 16.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist/cli.js +17514 -17799
  3. package/dist/types/advisor/config.d.ts +4 -3
  4. package/dist/types/commit/agentic/agent.d.ts +1 -0
  5. package/dist/types/config/settings-schema.d.ts +28 -0
  6. package/dist/types/extensibility/plugins/legacy-pi-compat.d.ts +10 -22
  7. package/dist/types/lsp/deferred-diagnostics.d.ts +11 -0
  8. package/dist/types/modes/components/move-overlay.d.ts +1 -1
  9. package/dist/types/modes/components/status-line/component.d.ts +3 -0
  10. package/dist/types/modes/components/status-line/types.d.ts +3 -0
  11. package/dist/types/modes/interactive-mode.d.ts +8 -0
  12. package/dist/types/modes/types.d.ts +2 -0
  13. package/dist/types/session/agent-session.d.ts +16 -0
  14. package/dist/types/task/executor.d.ts +31 -0
  15. package/dist/types/tools/__tests__/vibe-render.test.d.ts +1 -0
  16. package/dist/types/tools/browser/cmux/cmux-tab.d.ts +3 -1
  17. package/dist/types/tools/browser/cmux/rpc.d.ts +20 -0
  18. package/dist/types/tools/browser/run-output.d.ts +25 -0
  19. package/dist/types/tools/browser/tab-worker.d.ts +16 -0
  20. package/dist/types/tools/index.d.ts +1 -0
  21. package/dist/types/tools/vibe.d.ts +161 -0
  22. package/dist/types/utils/changelog.d.ts +35 -1
  23. package/dist/types/vibe/runtime.d.ts +124 -0
  24. package/dist/types/vibe/state.d.ts +4 -0
  25. package/dist/types/web/search/provider.d.ts +2 -0
  26. package/dist/types/web/search/providers/bing.d.ts +14 -0
  27. package/dist/types/web/search/providers/browser-headers.d.ts +9 -0
  28. package/dist/types/web/search/providers/browser-page.d.ts +32 -0
  29. package/dist/types/web/search/providers/ecosia.d.ts +14 -0
  30. package/dist/types/web/search/providers/google.d.ts +13 -0
  31. package/dist/types/web/search/providers/mojeek.d.ts +14 -0
  32. package/dist/types/web/search/providers/public.d.ts +37 -0
  33. package/dist/types/web/search/providers/startpage.d.ts +14 -0
  34. package/dist/types/web/search/providers/yahoo.d.ts +14 -0
  35. package/dist/types/web/search/types.d.ts +28 -0
  36. package/package.json +15 -18
  37. package/scripts/build-binary.ts +56 -73
  38. package/scripts/bundle-dist.ts +36 -40
  39. package/scripts/compile-binary.ts +68 -0
  40. package/scripts/generate-docs-index.ts +3 -93
  41. package/scripts/legacy-pi-virtual-module.ts +192 -0
  42. package/src/advisor/__tests__/advisor.test.ts +13 -0
  43. package/src/advisor/__tests__/config.test.ts +36 -0
  44. package/src/advisor/config.ts +11 -8
  45. package/src/commit/agentic/agent.ts +4 -0
  46. package/src/commit/agentic/index.ts +46 -21
  47. package/src/edit/index.ts +10 -76
  48. package/src/exec/non-interactive-env.ts +0 -1
  49. package/src/extensibility/plugins/legacy-pi-compat.ts +328 -162
  50. package/src/extensibility/plugins/legacy-pi-virtual-modules.d.ts +4 -0
  51. package/src/internal-urls/docs-index.ts +2 -1
  52. package/src/internal-urls/skill-protocol.ts +1 -1
  53. package/src/lsp/deferred-diagnostics.ts +66 -0
  54. package/src/main.ts +13 -13
  55. package/src/mcp/transports/stdio.test.ts +45 -1
  56. package/src/mcp/transports/stdio.ts +6 -3
  57. package/src/modes/acp/acp-agent.ts +65 -1
  58. package/src/modes/acp/acp-event-mapper.ts +5 -0
  59. package/src/modes/acp/acp-mode.ts +11 -0
  60. package/src/modes/components/__tests__/move-overlay.test.ts +16 -1
  61. package/src/modes/components/advisor-config.ts +15 -7
  62. package/src/modes/components/move-overlay.ts +2 -3
  63. package/src/modes/components/status-line/component.ts +6 -0
  64. package/src/modes/components/status-line/segments.ts +6 -0
  65. package/src/modes/components/status-line/types.ts +3 -0
  66. package/src/modes/controllers/command-controller.ts +8 -10
  67. package/src/modes/interactive-mode.ts +117 -1
  68. package/src/modes/types.ts +2 -0
  69. package/src/prompts/system/eager-task.md +2 -2
  70. package/src/prompts/system/system-prompt.md +9 -2
  71. package/src/prompts/system/vibe-mode-active.md +23 -0
  72. package/src/prompts/tools/browser.md +3 -3
  73. package/src/prompts/tools/grep.md +1 -1
  74. package/src/prompts/tools/vibe-kill.md +3 -0
  75. package/src/prompts/tools/vibe-list.md +3 -0
  76. package/src/prompts/tools/vibe-send.md +9 -0
  77. package/src/prompts/tools/vibe-spawn.md +10 -0
  78. package/src/prompts/tools/vibe-turn-result.md +19 -0
  79. package/src/prompts/tools/vibe-wait.md +8 -0
  80. package/src/sdk.ts +5 -0
  81. package/src/session/agent-session.ts +103 -13
  82. package/src/session/snapcompact-inline.ts +3 -19
  83. package/src/slash-commands/builtin-registry.ts +24 -8
  84. package/src/task/agents.ts +0 -2
  85. package/src/task/executor.ts +105 -0
  86. package/src/tools/__tests__/vibe-render.test.ts +210 -0
  87. package/src/tools/bash-skill-urls.ts +1 -1
  88. package/src/tools/browser/cmux/cmux-tab.ts +46 -48
  89. package/src/tools/browser/cmux/rpc.ts +50 -0
  90. package/src/tools/browser/run-output.ts +76 -0
  91. package/src/tools/browser/tab-worker.ts +264 -129
  92. package/src/tools/glob.ts +20 -6
  93. package/src/tools/index.ts +1 -0
  94. package/src/tools/read.ts +17 -9
  95. package/src/tools/renderers.ts +6 -0
  96. package/src/tools/vibe.ts +608 -0
  97. package/src/tools/write.ts +15 -2
  98. package/src/utils/changelog.ts +106 -9
  99. package/src/utils/git.ts +0 -1
  100. package/src/utils/title-generator.ts +70 -7
  101. package/src/vibe/runtime.ts +710 -0
  102. package/src/vibe/state.ts +4 -0
  103. package/src/web/search/index.ts +14 -6
  104. package/src/web/search/provider.ts +37 -1
  105. package/src/web/search/providers/bing.ts +197 -0
  106. package/src/web/search/providers/browser-headers.ts +92 -0
  107. package/src/web/search/providers/browser-page.ts +123 -0
  108. package/src/web/search/providers/duckduckgo.ts +13 -34
  109. package/src/web/search/providers/ecosia.ts +178 -0
  110. package/src/web/search/providers/google.ts +193 -0
  111. package/src/web/search/providers/mojeek.ts +206 -0
  112. package/src/web/search/providers/public.ts +201 -0
  113. package/src/web/search/providers/startpage.ts +213 -0
  114. package/src/web/search/providers/yahoo.ts +179 -0
  115. package/src/web/search/types.ts +35 -0
  116. package/dist/types/extensibility/plugins/legacy-pi-bundled-keys.d.ts +0 -10
  117. package/dist/types/extensibility/plugins/legacy-pi-bundled-registry.d.ts +0 -10
  118. package/scripts/generate-legacy-pi-bundled-registry.ts +0 -420
  119. package/src/extensibility/plugins/legacy-pi-bundled-keys.ts +0 -1011
  120. package/src/extensibility/plugins/legacy-pi-bundled-registry.ts +0 -3430
  121. package/src/internal-urls/docs-index.generated.txt +0 -2
  122. package/src/prompts/agents/plan.md +0 -47
@@ -1,1011 +0,0 @@
1
- // AUTO-GENERATED by scripts/generate-legacy-pi-bundled-registry.ts.
2
- // Do not edit by hand — run `bun scripts/generate-legacy-pi-bundled-registry.ts --generate`.
3
- /**
4
- * Canonical keys served by the `omp-legacy-pi-bundled:` virtual namespace.
5
- * Mirrors `Object.keys(BUNDLED_PI_REGISTRY)` from
6
- * `legacy-pi-bundled-keys.ts`'s sibling registry file. `legacy-pi-compat.ts`
7
- * statically imports this set to seed `LEGACY_PI_PACKAGE_ROOT_OVERRIDES` in
8
- * compiled-binary mode without dragging the heavy registry's transitive
9
- * graph into dev/test runs (the registry itself stays behind a dynamic
10
- * import — see `ensureBundledRegistryLoaded` in `legacy-pi-compat.ts`).
11
- */
12
- export const BUNDLED_PI_REGISTRY_KEYS: ReadonlySet<string> = new Set([
13
- "@oh-my-pi/pi-agent-core",
14
- "@oh-my-pi/pi-agent-core/compaction",
15
- "@oh-my-pi/pi-agent-core/compaction/branch-summarization",
16
- "@oh-my-pi/pi-agent-core/compaction/compaction",
17
- "@oh-my-pi/pi-agent-core/compaction/entries",
18
- "@oh-my-pi/pi-agent-core/compaction/errors",
19
- "@oh-my-pi/pi-agent-core/compaction/messages",
20
- "@oh-my-pi/pi-agent-core/compaction/openai",
21
- "@oh-my-pi/pi-agent-core/compaction/pruning",
22
- "@oh-my-pi/pi-agent-core/compaction/shake",
23
- "@oh-my-pi/pi-agent-core/compaction/tool-protection",
24
- "@oh-my-pi/pi-agent-core/compaction/utils",
25
- "@oh-my-pi/pi-ai",
26
- "@oh-my-pi/pi-ai/error",
27
- "@oh-my-pi/pi-ai/auth-broker",
28
- "@oh-my-pi/pi-ai/auth-gateway",
29
- "@oh-my-pi/pi-ai/utils/harmony-leak",
30
- "@oh-my-pi/pi-ai/dialect",
31
- "@oh-my-pi/pi-ai/oauth",
32
- "@oh-my-pi/pi-ai/registry",
33
- "@oh-my-pi/pi-ai/registry/oauth",
34
- "@oh-my-pi/pi-ai/utils/schema",
35
- "@oh-my-pi/pi-ai/auth-broker/client",
36
- "@oh-my-pi/pi-ai/auth-broker/discover",
37
- "@oh-my-pi/pi-ai/auth-broker/refresher",
38
- "@oh-my-pi/pi-ai/auth-broker/remote-store",
39
- "@oh-my-pi/pi-ai/auth-broker/server",
40
- "@oh-my-pi/pi-ai/auth-broker/snapshot-cache",
41
- "@oh-my-pi/pi-ai/auth-broker/types",
42
- "@oh-my-pi/pi-ai/auth-broker/wire-schemas",
43
- "@oh-my-pi/pi-ai/auth-gateway/http",
44
- "@oh-my-pi/pi-ai/auth-gateway/server",
45
- "@oh-my-pi/pi-ai/auth-gateway/types",
46
- "@oh-my-pi/pi-ai/providers/amazon-bedrock",
47
- "@oh-my-pi/pi-ai/providers/anthropic-client",
48
- "@oh-my-pi/pi-ai/providers/anthropic-messages-server-schema",
49
- "@oh-my-pi/pi-ai/providers/anthropic-messages-server",
50
- "@oh-my-pi/pi-ai/providers/anthropic-wire",
51
- "@oh-my-pi/pi-ai/providers/anthropic",
52
- "@oh-my-pi/pi-ai/providers/aws-credentials",
53
- "@oh-my-pi/pi-ai/providers/aws-eventstream",
54
- "@oh-my-pi/pi-ai/providers/aws-sigv4",
55
- "@oh-my-pi/pi-ai/providers/azure-openai-responses",
56
- "@oh-my-pi/pi-ai/providers/cursor",
57
- "@oh-my-pi/pi-ai/providers/devin",
58
- "@oh-my-pi/pi-ai/providers/error-message",
59
- "@oh-my-pi/pi-ai/providers/github-copilot-headers",
60
- "@oh-my-pi/pi-ai/providers/gitlab-duo-workflow",
61
- "@oh-my-pi/pi-ai/providers/gitlab-duo",
62
- "@oh-my-pi/pi-ai/providers/google-auth",
63
- "@oh-my-pi/pi-ai/providers/google-gemini-cli",
64
- "@oh-my-pi/pi-ai/providers/google-shared",
65
- "@oh-my-pi/pi-ai/providers/google-types",
66
- "@oh-my-pi/pi-ai/providers/google-vertex",
67
- "@oh-my-pi/pi-ai/providers/google",
68
- "@oh-my-pi/pi-ai/providers/grammar",
69
- "@oh-my-pi/pi-ai/providers/kimi",
70
- "@oh-my-pi/pi-ai/providers/mock",
71
- "@oh-my-pi/pi-ai/providers/ollama",
72
- "@oh-my-pi/pi-ai/providers/openai-anthropic-shim",
73
- "@oh-my-pi/pi-ai/providers/openai-chat-server-schema",
74
- "@oh-my-pi/pi-ai/providers/openai-chat-server",
75
- "@oh-my-pi/pi-ai/providers/openai-chat-wire",
76
- "@oh-my-pi/pi-ai/providers/openai-codex-responses",
77
- "@oh-my-pi/pi-ai/providers/openai-completions",
78
- "@oh-my-pi/pi-ai/providers/openai-reasoning-fallback",
79
- "@oh-my-pi/pi-ai/providers/openai-responses-server-schema",
80
- "@oh-my-pi/pi-ai/providers/openai-responses-server",
81
- "@oh-my-pi/pi-ai/providers/openai-responses-wire",
82
- "@oh-my-pi/pi-ai/providers/openai-responses",
83
- "@oh-my-pi/pi-ai/providers/openai-shared",
84
- "@oh-my-pi/pi-ai/providers/pi-native-client",
85
- "@oh-my-pi/pi-ai/providers/pi-native-server",
86
- "@oh-my-pi/pi-ai/providers/register-builtins",
87
- "@oh-my-pi/pi-ai/providers/synthetic",
88
- "@oh-my-pi/pi-ai/providers/transform-messages",
89
- "@oh-my-pi/pi-ai/providers/vision-guard",
90
- "@oh-my-pi/pi-ai/providers/openai-codex/request-transformer",
91
- "@oh-my-pi/pi-ai/providers/openai-codex/response-handler",
92
- "@oh-my-pi/pi-ai/usage/claude",
93
- "@oh-my-pi/pi-ai/usage/gemini",
94
- "@oh-my-pi/pi-ai/usage/github-copilot",
95
- "@oh-my-pi/pi-ai/usage/google-antigravity",
96
- "@oh-my-pi/pi-ai/usage/kimi",
97
- "@oh-my-pi/pi-ai/usage/minimax-code",
98
- "@oh-my-pi/pi-ai/usage/ollama",
99
- "@oh-my-pi/pi-ai/usage/openai-codex-base-url",
100
- "@oh-my-pi/pi-ai/usage/openai-codex-reset",
101
- "@oh-my-pi/pi-ai/usage/openai-codex",
102
- "@oh-my-pi/pi-ai/usage/opencode-go",
103
- "@oh-my-pi/pi-ai/usage/shared",
104
- "@oh-my-pi/pi-ai/usage/zai",
105
- "@oh-my-pi/pi-ai/utils/abort",
106
- "@oh-my-pi/pi-ai/utils/anthropic-auth",
107
- "@oh-my-pi/pi-ai/utils/block-symbols",
108
- "@oh-my-pi/pi-ai/utils/deterministic-id",
109
- "@oh-my-pi/pi-ai/utils/empty-completion-retry",
110
- "@oh-my-pi/pi-ai/utils/event-stream",
111
- "@oh-my-pi/pi-ai/utils/foundry",
112
- "@oh-my-pi/pi-ai/utils/google-validation",
113
- "@oh-my-pi/pi-ai/utils/http-inspector",
114
- "@oh-my-pi/pi-ai/utils/idle-iterator",
115
- "@oh-my-pi/pi-ai/utils/openai-http",
116
- "@oh-my-pi/pi-ai/utils/openrouter-headers",
117
- "@oh-my-pi/pi-ai/utils/parse-bind",
118
- "@oh-my-pi/pi-ai/utils/provider-response",
119
- "@oh-my-pi/pi-ai/utils/proxy",
120
- "@oh-my-pi/pi-ai/utils/request-debug",
121
- "@oh-my-pi/pi-ai/utils/retry-after",
122
- "@oh-my-pi/pi-ai/utils/retry",
123
- "@oh-my-pi/pi-ai/utils/sdk-stream-timeout",
124
- "@oh-my-pi/pi-ai/utils/sse-debug",
125
- "@oh-my-pi/pi-ai/utils/stream-markup-healing",
126
- "@oh-my-pi/pi-ai/utils/thinking-loop",
127
- "@oh-my-pi/pi-ai/utils/tool-choice",
128
- "@oh-my-pi/pi-ai/utils/validation",
129
- "@oh-my-pi/pi-ai/oauth/anthropic",
130
- "@oh-my-pi/pi-ai/oauth/callback-server",
131
- "@oh-my-pi/pi-ai/oauth/cursor",
132
- "@oh-my-pi/pi-ai/oauth/devin",
133
- "@oh-my-pi/pi-ai/oauth/github-copilot",
134
- "@oh-my-pi/pi-ai/oauth/gitlab-duo-workflow",
135
- "@oh-my-pi/pi-ai/oauth/gitlab-duo",
136
- "@oh-my-pi/pi-ai/oauth/google-antigravity",
137
- "@oh-my-pi/pi-ai/oauth/google-gemini-cli",
138
- "@oh-my-pi/pi-ai/oauth/google-oauth-shared",
139
- "@oh-my-pi/pi-ai/oauth/kimi",
140
- "@oh-my-pi/pi-ai/oauth/minimax-code",
141
- "@oh-my-pi/pi-ai/oauth/openai-codex",
142
- "@oh-my-pi/pi-ai/oauth/opencode",
143
- "@oh-my-pi/pi-ai/oauth/perplexity",
144
- "@oh-my-pi/pi-ai/oauth/pkce",
145
- "@oh-my-pi/pi-ai/oauth/types",
146
- "@oh-my-pi/pi-ai/oauth/wafer",
147
- "@oh-my-pi/pi-ai/oauth/xai-oauth",
148
- "@oh-my-pi/pi-ai/oauth/xiaomi",
149
- "@oh-my-pi/pi-ai/utils/schema/adapt",
150
- "@oh-my-pi/pi-ai/utils/schema/compatibility",
151
- "@oh-my-pi/pi-ai/utils/schema/dereference",
152
- "@oh-my-pi/pi-ai/utils/schema/draft",
153
- "@oh-my-pi/pi-ai/utils/schema/equality",
154
- "@oh-my-pi/pi-ai/utils/schema/fields",
155
- "@oh-my-pi/pi-ai/utils/schema/json-schema-validator",
156
- "@oh-my-pi/pi-ai/utils/schema/meta-validator",
157
- "@oh-my-pi/pi-ai/utils/schema/normalize",
158
- "@oh-my-pi/pi-ai/utils/schema/spill",
159
- "@oh-my-pi/pi-ai/utils/schema/stamps",
160
- "@oh-my-pi/pi-ai/utils/schema/strict-tool-validation",
161
- "@oh-my-pi/pi-ai/utils/schema/types",
162
- "@oh-my-pi/pi-ai/utils/schema/typescript",
163
- "@oh-my-pi/pi-ai/utils/schema/wire",
164
- "@oh-my-pi/pi-ai/utils/schema/zod-decontaminate",
165
- "@oh-my-pi/pi-coding-agent",
166
- "@oh-my-pi/pi-coding-agent/async",
167
- "@oh-my-pi/pi-coding-agent/autoresearch",
168
- "@oh-my-pi/pi-coding-agent/capability",
169
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures",
170
- "@oh-my-pi/pi-coding-agent/commit",
171
- "@oh-my-pi/pi-coding-agent/commit/agentic",
172
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools",
173
- "@oh-my-pi/pi-coding-agent/commit/analysis",
174
- "@oh-my-pi/pi-coding-agent/commit/changelog",
175
- "@oh-my-pi/pi-coding-agent/commit/map-reduce",
176
- "@oh-my-pi/pi-coding-agent/dap",
177
- "@oh-my-pi/pi-coding-agent/debug",
178
- "@oh-my-pi/pi-coding-agent/discovery",
179
- "@oh-my-pi/pi-coding-agent/edit",
180
- "@oh-my-pi/pi-coding-agent/exa",
181
- "@oh-my-pi/pi-coding-agent/export/html",
182
- "@oh-my-pi/pi-coding-agent/extensibility/custom-commands",
183
- "@oh-my-pi/pi-coding-agent/extensibility/custom-commands/bundled/ci-green",
184
- "@oh-my-pi/pi-coding-agent/extensibility/custom-commands/bundled/review",
185
- "@oh-my-pi/pi-coding-agent/extensibility/custom-tools",
186
- "@oh-my-pi/pi-coding-agent/extensibility/extensions",
187
- "@oh-my-pi/pi-coding-agent/extensibility/hooks",
188
- "@oh-my-pi/pi-coding-agent/extensibility/plugins",
189
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace",
190
- "@oh-my-pi/pi-coding-agent/internal-urls",
191
- "@oh-my-pi/pi-coding-agent/eval",
192
- "@oh-my-pi/pi-coding-agent/lsp",
193
- "@oh-my-pi/pi-coding-agent/lsp/clients",
194
- "@oh-my-pi/pi-coding-agent/markit",
195
- "@oh-my-pi/pi-coding-agent/mcp",
196
- "@oh-my-pi/pi-coding-agent/mcp/transports",
197
- "@oh-my-pi/pi-coding-agent/memories",
198
- "@oh-my-pi/pi-coding-agent/memory-backend",
199
- "@oh-my-pi/pi-coding-agent/hindsight",
200
- "@oh-my-pi/pi-coding-agent/modes",
201
- "@oh-my-pi/pi-coding-agent/modes/acp",
202
- "@oh-my-pi/pi-coding-agent/modes/components",
203
- "@oh-my-pi/pi-coding-agent/modes/components/extensions",
204
- "@oh-my-pi/pi-coding-agent/modes/components/status-line",
205
- "@oh-my-pi/pi-coding-agent/modes/setup-wizard",
206
- "@oh-my-pi/pi-coding-agent/modes/theme/defaults",
207
- "@oh-my-pi/pi-coding-agent/secrets",
208
- "@oh-my-pi/pi-coding-agent/stt",
209
- "@oh-my-pi/pi-coding-agent/task",
210
- "@oh-my-pi/pi-coding-agent/tools",
211
- "@oh-my-pi/pi-coding-agent/tui",
212
- "@oh-my-pi/pi-coding-agent/web/scrapers",
213
- "@oh-my-pi/pi-coding-agent/web/search",
214
- "@oh-my-pi/pi-coding-agent/async/job-manager",
215
- "@oh-my-pi/pi-coding-agent/autoresearch/dashboard",
216
- "@oh-my-pi/pi-coding-agent/autoresearch/git",
217
- "@oh-my-pi/pi-coding-agent/autoresearch/helpers",
218
- "@oh-my-pi/pi-coding-agent/autoresearch/state",
219
- "@oh-my-pi/pi-coding-agent/autoresearch/storage",
220
- "@oh-my-pi/pi-coding-agent/autoresearch/types",
221
- "@oh-my-pi/pi-coding-agent/autoresearch/tools/init-experiment",
222
- "@oh-my-pi/pi-coding-agent/autoresearch/tools/log-experiment",
223
- "@oh-my-pi/pi-coding-agent/autoresearch/tools/run-experiment",
224
- "@oh-my-pi/pi-coding-agent/autoresearch/tools/update-notes",
225
- "@oh-my-pi/pi-coding-agent/capability/context-file",
226
- "@oh-my-pi/pi-coding-agent/capability/extension-module",
227
- "@oh-my-pi/pi-coding-agent/capability/extension",
228
- "@oh-my-pi/pi-coding-agent/capability/fs",
229
- "@oh-my-pi/pi-coding-agent/capability/hook",
230
- "@oh-my-pi/pi-coding-agent/capability/instruction",
231
- "@oh-my-pi/pi-coding-agent/capability/mcp",
232
- "@oh-my-pi/pi-coding-agent/capability/prompt",
233
- "@oh-my-pi/pi-coding-agent/capability/rule-buckets",
234
- "@oh-my-pi/pi-coding-agent/capability/rule",
235
- "@oh-my-pi/pi-coding-agent/capability/settings",
236
- "@oh-my-pi/pi-coding-agent/capability/skill",
237
- "@oh-my-pi/pi-coding-agent/capability/slash-command",
238
- "@oh-my-pi/pi-coding-agent/capability/ssh",
239
- "@oh-my-pi/pi-coding-agent/capability/system-prompt",
240
- "@oh-my-pi/pi-coding-agent/capability/tool",
241
- "@oh-my-pi/pi-coding-agent/capability/types",
242
- "@oh-my-pi/pi-coding-agent/cli/agents-cli",
243
- "@oh-my-pi/pi-coding-agent/cli/args",
244
- "@oh-my-pi/pi-coding-agent/cli/auth-broker-cli",
245
- "@oh-my-pi/pi-coding-agent/cli/auth-gateway-cli",
246
- "@oh-my-pi/pi-coding-agent/cli/bench-cli",
247
- "@oh-my-pi/pi-coding-agent/cli/classify-install-target",
248
- "@oh-my-pi/pi-coding-agent/cli/claude-trace-cli",
249
- "@oh-my-pi/pi-coding-agent/cli/completion-gen",
250
- "@oh-my-pi/pi-coding-agent/cli/config-cli",
251
- "@oh-my-pi/pi-coding-agent/cli/dry-balance-cli",
252
- "@oh-my-pi/pi-coding-agent/cli/extension-flags",
253
- "@oh-my-pi/pi-coding-agent/cli/file-processor",
254
- "@oh-my-pi/pi-coding-agent/cli/flag-tables",
255
- "@oh-my-pi/pi-coding-agent/cli/gallery-cli",
256
- "@oh-my-pi/pi-coding-agent/cli/gallery-screenshot",
257
- "@oh-my-pi/pi-coding-agent/cli/gc-cli",
258
- "@oh-my-pi/pi-coding-agent/cli/grep-cli",
259
- "@oh-my-pi/pi-coding-agent/cli/grievances-cli",
260
- "@oh-my-pi/pi-coding-agent/cli/initial-message",
261
- "@oh-my-pi/pi-coding-agent/cli/models-cli",
262
- "@oh-my-pi/pi-coding-agent/cli/plugin-cli",
263
- "@oh-my-pi/pi-coding-agent/cli/profile-alias",
264
- "@oh-my-pi/pi-coding-agent/cli/profile-bootstrap",
265
- "@oh-my-pi/pi-coding-agent/cli/read-cli",
266
- "@oh-my-pi/pi-coding-agent/cli/session-picker",
267
- "@oh-my-pi/pi-coding-agent/cli/setup-cli",
268
- "@oh-my-pi/pi-coding-agent/cli/setup-model-picker",
269
- "@oh-my-pi/pi-coding-agent/cli/shell-cli",
270
- "@oh-my-pi/pi-coding-agent/cli/ssh-cli",
271
- "@oh-my-pi/pi-coding-agent/cli/startup-cwd",
272
- "@oh-my-pi/pi-coding-agent/cli/stats-cli",
273
- "@oh-my-pi/pi-coding-agent/cli/tiny-models-cli",
274
- "@oh-my-pi/pi-coding-agent/cli/ttsr-cli",
275
- "@oh-my-pi/pi-coding-agent/cli/update-cli",
276
- "@oh-my-pi/pi-coding-agent/cli/usage-cli",
277
- "@oh-my-pi/pi-coding-agent/cli/web-search-cli",
278
- "@oh-my-pi/pi-coding-agent/cli/worktree-cli",
279
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/agentic",
280
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/codeintel",
281
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/edit",
282
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/fs",
283
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/interaction",
284
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/memory",
285
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/misc",
286
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/search",
287
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/shell",
288
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/types",
289
- "@oh-my-pi/pi-coding-agent/cli/gallery-fixtures/web",
290
- "@oh-my-pi/pi-coding-agent/cli/commands/init-xdg",
291
- "@oh-my-pi/pi-coding-agent/commands/acp",
292
- "@oh-my-pi/pi-coding-agent/commands/agents",
293
- "@oh-my-pi/pi-coding-agent/commands/auth-broker",
294
- "@oh-my-pi/pi-coding-agent/commands/auth-gateway",
295
- "@oh-my-pi/pi-coding-agent/commands/bench",
296
- "@oh-my-pi/pi-coding-agent/commands/commit",
297
- "@oh-my-pi/pi-coding-agent/commands/complete",
298
- "@oh-my-pi/pi-coding-agent/commands/completions",
299
- "@oh-my-pi/pi-coding-agent/commands/config",
300
- "@oh-my-pi/pi-coding-agent/commands/dry-balance",
301
- "@oh-my-pi/pi-coding-agent/commands/gallery",
302
- "@oh-my-pi/pi-coding-agent/commands/gc",
303
- "@oh-my-pi/pi-coding-agent/commands/grep",
304
- "@oh-my-pi/pi-coding-agent/commands/grievances",
305
- "@oh-my-pi/pi-coding-agent/commands/install",
306
- "@oh-my-pi/pi-coding-agent/commands/join",
307
- "@oh-my-pi/pi-coding-agent/commands/launch",
308
- "@oh-my-pi/pi-coding-agent/commands/models",
309
- "@oh-my-pi/pi-coding-agent/commands/plugin",
310
- "@oh-my-pi/pi-coding-agent/commands/read",
311
- "@oh-my-pi/pi-coding-agent/commands/say",
312
- "@oh-my-pi/pi-coding-agent/commands/setup",
313
- "@oh-my-pi/pi-coding-agent/commands/shell",
314
- "@oh-my-pi/pi-coding-agent/commands/ssh",
315
- "@oh-my-pi/pi-coding-agent/commands/stats",
316
- "@oh-my-pi/pi-coding-agent/commands/tiny-models",
317
- "@oh-my-pi/pi-coding-agent/commands/token",
318
- "@oh-my-pi/pi-coding-agent/commands/ttsr",
319
- "@oh-my-pi/pi-coding-agent/commands/update",
320
- "@oh-my-pi/pi-coding-agent/commands/usage",
321
- "@oh-my-pi/pi-coding-agent/commands/web-search",
322
- "@oh-my-pi/pi-coding-agent/commands/worktree",
323
- "@oh-my-pi/pi-coding-agent/commit/cli",
324
- "@oh-my-pi/pi-coding-agent/commit/message",
325
- "@oh-my-pi/pi-coding-agent/commit/model-selection",
326
- "@oh-my-pi/pi-coding-agent/commit/pipeline",
327
- "@oh-my-pi/pi-coding-agent/commit/shared-llm",
328
- "@oh-my-pi/pi-coding-agent/commit/types",
329
- "@oh-my-pi/pi-coding-agent/commit/utils",
330
- "@oh-my-pi/pi-coding-agent/commit/agentic/agent",
331
- "@oh-my-pi/pi-coding-agent/commit/agentic/fallback",
332
- "@oh-my-pi/pi-coding-agent/commit/agentic/state",
333
- "@oh-my-pi/pi-coding-agent/commit/agentic/topo-sort",
334
- "@oh-my-pi/pi-coding-agent/commit/agentic/trivial",
335
- "@oh-my-pi/pi-coding-agent/commit/agentic/validation",
336
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/analyze-file",
337
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/git-file-diff",
338
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/git-hunk",
339
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/git-overview",
340
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/propose-changelog",
341
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/propose-commit",
342
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/recent-commits",
343
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/schemas",
344
- "@oh-my-pi/pi-coding-agent/commit/agentic/tools/split-commit",
345
- "@oh-my-pi/pi-coding-agent/commit/analysis/conventional",
346
- "@oh-my-pi/pi-coding-agent/commit/analysis/scope",
347
- "@oh-my-pi/pi-coding-agent/commit/analysis/summary",
348
- "@oh-my-pi/pi-coding-agent/commit/analysis/validation",
349
- "@oh-my-pi/pi-coding-agent/commit/changelog/detect",
350
- "@oh-my-pi/pi-coding-agent/commit/changelog/generate",
351
- "@oh-my-pi/pi-coding-agent/commit/changelog/parse",
352
- "@oh-my-pi/pi-coding-agent/commit/git/diff",
353
- "@oh-my-pi/pi-coding-agent/commit/map-reduce/map-phase",
354
- "@oh-my-pi/pi-coding-agent/commit/map-reduce/reduce-phase",
355
- "@oh-my-pi/pi-coding-agent/commit/map-reduce/utils",
356
- "@oh-my-pi/pi-coding-agent/commit/utils/exclusions",
357
- "@oh-my-pi/pi-coding-agent/config/api-key-resolver",
358
- "@oh-my-pi/pi-coding-agent/config/append-only-context-mode",
359
- "@oh-my-pi/pi-coding-agent/config/config-file",
360
- "@oh-my-pi/pi-coding-agent/config/file-lock",
361
- "@oh-my-pi/pi-coding-agent/config/inline-tool-descriptors-mode",
362
- "@oh-my-pi/pi-coding-agent/config/keybindings",
363
- "@oh-my-pi/pi-coding-agent/config/model-discovery",
364
- "@oh-my-pi/pi-coding-agent/config/model-registry",
365
- "@oh-my-pi/pi-coding-agent/config/model-resolver",
366
- "@oh-my-pi/pi-coding-agent/config/model-roles",
367
- "@oh-my-pi/pi-coding-agent/config/models-config-schema",
368
- "@oh-my-pi/pi-coding-agent/config/models-config",
369
- "@oh-my-pi/pi-coding-agent/config/prompt-templates",
370
- "@oh-my-pi/pi-coding-agent/config/resolve-config-value",
371
- "@oh-my-pi/pi-coding-agent/config/service-tier",
372
- "@oh-my-pi/pi-coding-agent/config/settings-schema",
373
- "@oh-my-pi/pi-coding-agent/config/settings",
374
- "@oh-my-pi/pi-coding-agent/dap/client",
375
- "@oh-my-pi/pi-coding-agent/dap/config",
376
- "@oh-my-pi/pi-coding-agent/dap/session",
377
- "@oh-my-pi/pi-coding-agent/dap/types",
378
- "@oh-my-pi/pi-coding-agent/debug/log-formatting",
379
- "@oh-my-pi/pi-coding-agent/debug/log-viewer",
380
- "@oh-my-pi/pi-coding-agent/debug/profiler",
381
- "@oh-my-pi/pi-coding-agent/debug/protocol-probe",
382
- "@oh-my-pi/pi-coding-agent/debug/raw-sse-buffer",
383
- "@oh-my-pi/pi-coding-agent/debug/raw-sse",
384
- "@oh-my-pi/pi-coding-agent/debug/remote-debugger",
385
- "@oh-my-pi/pi-coding-agent/debug/report-bundle",
386
- "@oh-my-pi/pi-coding-agent/debug/system-info",
387
- "@oh-my-pi/pi-coding-agent/debug/terminal-info",
388
- "@oh-my-pi/pi-coding-agent/discovery/agents-md",
389
- "@oh-my-pi/pi-coding-agent/discovery/agents",
390
- "@oh-my-pi/pi-coding-agent/discovery/at-imports",
391
- "@oh-my-pi/pi-coding-agent/discovery/builtin-defaults",
392
- "@oh-my-pi/pi-coding-agent/discovery/builtin",
393
- "@oh-my-pi/pi-coding-agent/discovery/claude-plugins",
394
- "@oh-my-pi/pi-coding-agent/discovery/claude",
395
- "@oh-my-pi/pi-coding-agent/discovery/cline",
396
- "@oh-my-pi/pi-coding-agent/discovery/codex",
397
- "@oh-my-pi/pi-coding-agent/discovery/cursor",
398
- "@oh-my-pi/pi-coding-agent/discovery/gemini",
399
- "@oh-my-pi/pi-coding-agent/discovery/github",
400
- "@oh-my-pi/pi-coding-agent/discovery/helpers",
401
- "@oh-my-pi/pi-coding-agent/discovery/mcp-json",
402
- "@oh-my-pi/pi-coding-agent/discovery/omp-extension-roots",
403
- "@oh-my-pi/pi-coding-agent/discovery/omp-plugins",
404
- "@oh-my-pi/pi-coding-agent/discovery/opencode",
405
- "@oh-my-pi/pi-coding-agent/discovery/plugin-dir-roots",
406
- "@oh-my-pi/pi-coding-agent/discovery/ssh",
407
- "@oh-my-pi/pi-coding-agent/discovery/substitute-plugin-root",
408
- "@oh-my-pi/pi-coding-agent/discovery/vscode",
409
- "@oh-my-pi/pi-coding-agent/discovery/windsurf",
410
- "@oh-my-pi/pi-coding-agent/edit/diff",
411
- "@oh-my-pi/pi-coding-agent/edit/file-snapshot-store",
412
- "@oh-my-pi/pi-coding-agent/edit/normalize",
413
- "@oh-my-pi/pi-coding-agent/edit/notebook",
414
- "@oh-my-pi/pi-coding-agent/edit/read-file",
415
- "@oh-my-pi/pi-coding-agent/edit/renderer",
416
- "@oh-my-pi/pi-coding-agent/edit/streaming",
417
- "@oh-my-pi/pi-coding-agent/edit/modes/apply-patch",
418
- "@oh-my-pi/pi-coding-agent/edit/modes/patch",
419
- "@oh-my-pi/pi-coding-agent/edit/modes/replace",
420
- "@oh-my-pi/pi-coding-agent/exa/mcp-client",
421
- "@oh-my-pi/pi-coding-agent/exa/types",
422
- "@oh-my-pi/pi-coding-agent/exec/bash-executor",
423
- "@oh-my-pi/pi-coding-agent/exec/exec",
424
- "@oh-my-pi/pi-coding-agent/exec/non-interactive-env",
425
- "@oh-my-pi/pi-coding-agent/export/custom-share",
426
- "@oh-my-pi/pi-coding-agent/export/share",
427
- "@oh-my-pi/pi-coding-agent/export/ttsr",
428
- "@oh-my-pi/pi-coding-agent/export/html/web-palette",
429
- "@oh-my-pi/pi-coding-agent/extensibility/legacy-pi-ai-shim",
430
- "@oh-my-pi/pi-coding-agent/extensibility/legacy-pi-coding-agent-shim",
431
- "@oh-my-pi/pi-coding-agent/extensibility/session-handler-types",
432
- "@oh-my-pi/pi-coding-agent/extensibility/shared-events",
433
- "@oh-my-pi/pi-coding-agent/extensibility/skills",
434
- "@oh-my-pi/pi-coding-agent/extensibility/slash-commands",
435
- "@oh-my-pi/pi-coding-agent/extensibility/tool-event-input",
436
- "@oh-my-pi/pi-coding-agent/extensibility/tool-proxy",
437
- "@oh-my-pi/pi-coding-agent/extensibility/typebox",
438
- "@oh-my-pi/pi-coding-agent/extensibility/utils",
439
- "@oh-my-pi/pi-coding-agent/extensibility/custom-commands/loader",
440
- "@oh-my-pi/pi-coding-agent/extensibility/custom-commands/types",
441
- "@oh-my-pi/pi-coding-agent/extensibility/custom-tools/loader",
442
- "@oh-my-pi/pi-coding-agent/extensibility/custom-tools/types",
443
- "@oh-my-pi/pi-coding-agent/extensibility/custom-tools/wrapper",
444
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/compact-handler",
445
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/get-commands-handler",
446
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/loader",
447
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/model-api",
448
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/runner",
449
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/types",
450
- "@oh-my-pi/pi-coding-agent/extensibility/extensions/wrapper",
451
- "@oh-my-pi/pi-coding-agent/extensibility/hooks/loader",
452
- "@oh-my-pi/pi-coding-agent/extensibility/hooks/runner",
453
- "@oh-my-pi/pi-coding-agent/extensibility/hooks/tool-wrapper",
454
- "@oh-my-pi/pi-coding-agent/extensibility/hooks/types",
455
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/doctor",
456
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/git-url",
457
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/installer",
458
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-keys",
459
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/legacy-pi-bundled-registry",
460
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/legacy-pi-compat",
461
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/loader",
462
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/manager",
463
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace-auto-update",
464
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/parser",
465
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/runtime-config",
466
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/types",
467
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/cache",
468
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/fetcher",
469
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/manager",
470
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/registry",
471
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/source-resolver",
472
- "@oh-my-pi/pi-coding-agent/extensibility/plugins/marketplace/types",
473
- "@oh-my-pi/pi-coding-agent/internal-urls/agent-protocol",
474
- "@oh-my-pi/pi-coding-agent/internal-urls/artifact-protocol",
475
- "@oh-my-pi/pi-coding-agent/internal-urls/docs-index",
476
- "@oh-my-pi/pi-coding-agent/internal-urls/filesystem-resource",
477
- "@oh-my-pi/pi-coding-agent/internal-urls/history-protocol",
478
- "@oh-my-pi/pi-coding-agent/internal-urls/issue-pr-protocol",
479
- "@oh-my-pi/pi-coding-agent/internal-urls/json-query",
480
- "@oh-my-pi/pi-coding-agent/internal-urls/local-protocol",
481
- "@oh-my-pi/pi-coding-agent/internal-urls/mcp-protocol",
482
- "@oh-my-pi/pi-coding-agent/internal-urls/memory-protocol",
483
- "@oh-my-pi/pi-coding-agent/internal-urls/omp-protocol",
484
- "@oh-my-pi/pi-coding-agent/internal-urls/parse",
485
- "@oh-my-pi/pi-coding-agent/internal-urls/registry-helpers",
486
- "@oh-my-pi/pi-coding-agent/internal-urls/router",
487
- "@oh-my-pi/pi-coding-agent/internal-urls/rule-protocol",
488
- "@oh-my-pi/pi-coding-agent/internal-urls/skill-protocol",
489
- "@oh-my-pi/pi-coding-agent/internal-urls/ssh-protocol",
490
- "@oh-my-pi/pi-coding-agent/internal-urls/types",
491
- "@oh-my-pi/pi-coding-agent/internal-urls/vault-protocol",
492
- "@oh-my-pi/pi-coding-agent/eval/js/context-manager",
493
- "@oh-my-pi/pi-coding-agent/eval/js/executor",
494
- "@oh-my-pi/pi-coding-agent/eval/js/tool-bridge",
495
- "@oh-my-pi/pi-coding-agent/eval/js/worker-core",
496
- "@oh-my-pi/pi-coding-agent/eval/js/worker-protocol",
497
- "@oh-my-pi/pi-coding-agent/eval/py/display",
498
- "@oh-my-pi/pi-coding-agent/eval/py/executor",
499
- "@oh-my-pi/pi-coding-agent/eval/py/kernel",
500
- "@oh-my-pi/pi-coding-agent/eval/py/prelude",
501
- "@oh-my-pi/pi-coding-agent/eval/py/runtime",
502
- "@oh-my-pi/pi-coding-agent/eval/py/spawn-options",
503
- "@oh-my-pi/pi-coding-agent/eval/py/tool-bridge",
504
- "@oh-my-pi/pi-coding-agent/lsp/client",
505
- "@oh-my-pi/pi-coding-agent/lsp/config",
506
- "@oh-my-pi/pi-coding-agent/lsp/diagnostics-ledger",
507
- "@oh-my-pi/pi-coding-agent/lsp/edits",
508
- "@oh-my-pi/pi-coding-agent/lsp/format-options",
509
- "@oh-my-pi/pi-coding-agent/lsp/lspmux",
510
- "@oh-my-pi/pi-coding-agent/lsp/render",
511
- "@oh-my-pi/pi-coding-agent/lsp/startup-events",
512
- "@oh-my-pi/pi-coding-agent/lsp/types",
513
- "@oh-my-pi/pi-coding-agent/lsp/utils",
514
- "@oh-my-pi/pi-coding-agent/lsp/clients/biome-client",
515
- "@oh-my-pi/pi-coding-agent/lsp/clients/lsp-linter-client",
516
- "@oh-my-pi/pi-coding-agent/lsp/clients/swiftlint-client",
517
- "@oh-my-pi/pi-coding-agent/markit/registry",
518
- "@oh-my-pi/pi-coding-agent/markit/types",
519
- "@oh-my-pi/pi-coding-agent/mcp/client",
520
- "@oh-my-pi/pi-coding-agent/mcp/config-writer",
521
- "@oh-my-pi/pi-coding-agent/mcp/config",
522
- "@oh-my-pi/pi-coding-agent/mcp/json-rpc",
523
- "@oh-my-pi/pi-coding-agent/mcp/loader",
524
- "@oh-my-pi/pi-coding-agent/mcp/manager",
525
- "@oh-my-pi/pi-coding-agent/mcp/oauth-credentials",
526
- "@oh-my-pi/pi-coding-agent/mcp/oauth-discovery",
527
- "@oh-my-pi/pi-coding-agent/mcp/oauth-flow",
528
- "@oh-my-pi/pi-coding-agent/mcp/render",
529
- "@oh-my-pi/pi-coding-agent/mcp/smithery-auth",
530
- "@oh-my-pi/pi-coding-agent/mcp/smithery-connect",
531
- "@oh-my-pi/pi-coding-agent/mcp/smithery-registry",
532
- "@oh-my-pi/pi-coding-agent/mcp/startup-events",
533
- "@oh-my-pi/pi-coding-agent/mcp/timeout",
534
- "@oh-my-pi/pi-coding-agent/mcp/tool-bridge",
535
- "@oh-my-pi/pi-coding-agent/mcp/tool-cache",
536
- "@oh-my-pi/pi-coding-agent/mcp/types",
537
- "@oh-my-pi/pi-coding-agent/mcp/transports/http",
538
- "@oh-my-pi/pi-coding-agent/mcp/transports/stdio",
539
- "@oh-my-pi/pi-coding-agent/memories/storage",
540
- "@oh-my-pi/pi-coding-agent/memory-backend/local-backend",
541
- "@oh-my-pi/pi-coding-agent/memory-backend/off-backend",
542
- "@oh-my-pi/pi-coding-agent/memory-backend/resolve",
543
- "@oh-my-pi/pi-coding-agent/memory-backend/runtime",
544
- "@oh-my-pi/pi-coding-agent/memory-backend/types",
545
- "@oh-my-pi/pi-coding-agent/hindsight/backend",
546
- "@oh-my-pi/pi-coding-agent/hindsight/bank",
547
- "@oh-my-pi/pi-coding-agent/hindsight/client",
548
- "@oh-my-pi/pi-coding-agent/hindsight/config",
549
- "@oh-my-pi/pi-coding-agent/hindsight/content",
550
- "@oh-my-pi/pi-coding-agent/hindsight/mental-models",
551
- "@oh-my-pi/pi-coding-agent/hindsight/state",
552
- "@oh-my-pi/pi-coding-agent/hindsight/transcript",
553
- "@oh-my-pi/pi-coding-agent/modes/emoji-autocomplete",
554
- "@oh-my-pi/pi-coding-agent/modes/gradient-highlight",
555
- "@oh-my-pi/pi-coding-agent/modes/image-references",
556
- "@oh-my-pi/pi-coding-agent/modes/interactive-mode",
557
- "@oh-my-pi/pi-coding-agent/modes/internal-url-autocomplete",
558
- "@oh-my-pi/pi-coding-agent/modes/loop-limit",
559
- "@oh-my-pi/pi-coding-agent/modes/magic-keywords",
560
- "@oh-my-pi/pi-coding-agent/modes/markdown-prose",
561
- "@oh-my-pi/pi-coding-agent/modes/oauth-manual-input",
562
- "@oh-my-pi/pi-coding-agent/modes/orchestrate",
563
- "@oh-my-pi/pi-coding-agent/modes/print-mode",
564
- "@oh-my-pi/pi-coding-agent/modes/prompt-action-autocomplete",
565
- "@oh-my-pi/pi-coding-agent/modes/running-subagent-badge",
566
- "@oh-my-pi/pi-coding-agent/modes/runtime-init",
567
- "@oh-my-pi/pi-coding-agent/modes/session-observer-registry",
568
- "@oh-my-pi/pi-coding-agent/modes/setup-version",
569
- "@oh-my-pi/pi-coding-agent/modes/shared",
570
- "@oh-my-pi/pi-coding-agent/modes/turn-budget",
571
- "@oh-my-pi/pi-coding-agent/modes/types",
572
- "@oh-my-pi/pi-coding-agent/modes/ultrathink",
573
- "@oh-my-pi/pi-coding-agent/modes/workflow",
574
- "@oh-my-pi/pi-coding-agent/modes/acp/acp-agent",
575
- "@oh-my-pi/pi-coding-agent/modes/acp/acp-client-bridge",
576
- "@oh-my-pi/pi-coding-agent/modes/acp/acp-event-mapper",
577
- "@oh-my-pi/pi-coding-agent/modes/acp/acp-mode",
578
- "@oh-my-pi/pi-coding-agent/modes/acp/terminal-auth",
579
- "@oh-my-pi/pi-coding-agent/modes/components/advisor-message",
580
- "@oh-my-pi/pi-coding-agent/modes/components/agent-dashboard",
581
- "@oh-my-pi/pi-coding-agent/modes/components/agent-hub",
582
- "@oh-my-pi/pi-coding-agent/modes/components/agent-transcript-viewer",
583
- "@oh-my-pi/pi-coding-agent/modes/components/assistant-message",
584
- "@oh-my-pi/pi-coding-agent/modes/components/background-tan-message",
585
- "@oh-my-pi/pi-coding-agent/modes/components/bash-execution",
586
- "@oh-my-pi/pi-coding-agent/modes/components/bordered-loader",
587
- "@oh-my-pi/pi-coding-agent/modes/components/btw-panel",
588
- "@oh-my-pi/pi-coding-agent/modes/components/cache-invalidation-marker",
589
- "@oh-my-pi/pi-coding-agent/modes/components/chat-block",
590
- "@oh-my-pi/pi-coding-agent/modes/components/chat-transcript-builder",
591
- "@oh-my-pi/pi-coding-agent/modes/components/collab-prompt-message",
592
- "@oh-my-pi/pi-coding-agent/modes/components/compaction-summary-message",
593
- "@oh-my-pi/pi-coding-agent/modes/components/copy-selector",
594
- "@oh-my-pi/pi-coding-agent/modes/components/countdown-timer",
595
- "@oh-my-pi/pi-coding-agent/modes/components/custom-editor",
596
- "@oh-my-pi/pi-coding-agent/modes/components/custom-message",
597
- "@oh-my-pi/pi-coding-agent/modes/components/diff",
598
- "@oh-my-pi/pi-coding-agent/modes/components/dynamic-border",
599
- "@oh-my-pi/pi-coding-agent/modes/components/error-banner",
600
- "@oh-my-pi/pi-coding-agent/modes/components/eval-execution",
601
- "@oh-my-pi/pi-coding-agent/modes/components/execution-shared",
602
- "@oh-my-pi/pi-coding-agent/modes/components/footer",
603
- "@oh-my-pi/pi-coding-agent/modes/components/history-search",
604
- "@oh-my-pi/pi-coding-agent/modes/components/hook-editor",
605
- "@oh-my-pi/pi-coding-agent/modes/components/hook-input",
606
- "@oh-my-pi/pi-coding-agent/modes/components/hook-message",
607
- "@oh-my-pi/pi-coding-agent/modes/components/hook-selector",
608
- "@oh-my-pi/pi-coding-agent/modes/components/keybinding-hints",
609
- "@oh-my-pi/pi-coding-agent/modes/components/late-diagnostics-message",
610
- "@oh-my-pi/pi-coding-agent/modes/components/login-dialog",
611
- "@oh-my-pi/pi-coding-agent/modes/components/logout-account-selector",
612
- "@oh-my-pi/pi-coding-agent/modes/components/mcp-add-wizard",
613
- "@oh-my-pi/pi-coding-agent/modes/components/message-frame",
614
- "@oh-my-pi/pi-coding-agent/modes/components/model-selector",
615
- "@oh-my-pi/pi-coding-agent/modes/components/move-overlay",
616
- "@oh-my-pi/pi-coding-agent/modes/components/oauth-selector",
617
- "@oh-my-pi/pi-coding-agent/modes/components/omfg-panel",
618
- "@oh-my-pi/pi-coding-agent/modes/components/overlay-box",
619
- "@oh-my-pi/pi-coding-agent/modes/components/plan-review-overlay",
620
- "@oh-my-pi/pi-coding-agent/modes/components/plan-toc",
621
- "@oh-my-pi/pi-coding-agent/modes/components/plugin-selector",
622
- "@oh-my-pi/pi-coding-agent/modes/components/plugin-settings",
623
- "@oh-my-pi/pi-coding-agent/modes/components/queue-mode-selector",
624
- "@oh-my-pi/pi-coding-agent/modes/components/read-tool-group",
625
- "@oh-my-pi/pi-coding-agent/modes/components/reset-usage-selector",
626
- "@oh-my-pi/pi-coding-agent/modes/components/segment-track",
627
- "@oh-my-pi/pi-coding-agent/modes/components/select-list-mouse-routing",
628
- "@oh-my-pi/pi-coding-agent/modes/components/selector-helpers",
629
- "@oh-my-pi/pi-coding-agent/modes/components/session-selector",
630
- "@oh-my-pi/pi-coding-agent/modes/components/settings-defs",
631
- "@oh-my-pi/pi-coding-agent/modes/components/settings-selector",
632
- "@oh-my-pi/pi-coding-agent/modes/components/show-images-selector",
633
- "@oh-my-pi/pi-coding-agent/modes/components/skill-message",
634
- "@oh-my-pi/pi-coding-agent/modes/components/snapcompact-shape-preview",
635
- "@oh-my-pi/pi-coding-agent/modes/components/theme-selector",
636
- "@oh-my-pi/pi-coding-agent/modes/components/thinking-selector",
637
- "@oh-my-pi/pi-coding-agent/modes/components/tiny-title-download-progress",
638
- "@oh-my-pi/pi-coding-agent/modes/components/todo-reminder",
639
- "@oh-my-pi/pi-coding-agent/modes/components/tool-execution",
640
- "@oh-my-pi/pi-coding-agent/modes/components/transcript-container",
641
- "@oh-my-pi/pi-coding-agent/modes/components/tree-selector",
642
- "@oh-my-pi/pi-coding-agent/modes/components/ttsr-notification",
643
- "@oh-my-pi/pi-coding-agent/modes/components/usage-row",
644
- "@oh-my-pi/pi-coding-agent/modes/components/user-message-selector",
645
- "@oh-my-pi/pi-coding-agent/modes/components/user-message",
646
- "@oh-my-pi/pi-coding-agent/modes/components/visual-truncate",
647
- "@oh-my-pi/pi-coding-agent/modes/components/welcome",
648
- "@oh-my-pi/pi-coding-agent/modes/components/extensions/extension-dashboard",
649
- "@oh-my-pi/pi-coding-agent/modes/components/extensions/extension-list",
650
- "@oh-my-pi/pi-coding-agent/modes/components/extensions/inspector-panel",
651
- "@oh-my-pi/pi-coding-agent/modes/components/extensions/state-manager",
652
- "@oh-my-pi/pi-coding-agent/modes/components/extensions/types",
653
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/component",
654
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/context-thresholds",
655
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/git-utils",
656
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/presets",
657
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/segments",
658
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/separators",
659
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/token-rate",
660
- "@oh-my-pi/pi-coding-agent/modes/components/status-line/types",
661
- "@oh-my-pi/pi-coding-agent/modes/controllers/btw-controller",
662
- "@oh-my-pi/pi-coding-agent/modes/controllers/command-controller-shared",
663
- "@oh-my-pi/pi-coding-agent/modes/controllers/command-controller",
664
- "@oh-my-pi/pi-coding-agent/modes/controllers/event-controller",
665
- "@oh-my-pi/pi-coding-agent/modes/controllers/extension-ui-controller",
666
- "@oh-my-pi/pi-coding-agent/modes/controllers/input-controller",
667
- "@oh-my-pi/pi-coding-agent/modes/controllers/mcp-command-controller",
668
- "@oh-my-pi/pi-coding-agent/modes/controllers/omfg-controller",
669
- "@oh-my-pi/pi-coding-agent/modes/controllers/omfg-rule",
670
- "@oh-my-pi/pi-coding-agent/modes/controllers/selector-controller",
671
- "@oh-my-pi/pi-coding-agent/modes/controllers/session-focus-controller",
672
- "@oh-my-pi/pi-coding-agent/modes/controllers/ssh-command-controller",
673
- "@oh-my-pi/pi-coding-agent/modes/controllers/streaming-reveal",
674
- "@oh-my-pi/pi-coding-agent/modes/controllers/tan-command-controller",
675
- "@oh-my-pi/pi-coding-agent/modes/controllers/todo-command-controller",
676
- "@oh-my-pi/pi-coding-agent/modes/controllers/tool-args-reveal",
677
- "@oh-my-pi/pi-coding-agent/modes/setup-wizard/lazy",
678
- "@oh-my-pi/pi-coding-agent/modes/setup-wizard/startup-splash",
679
- "@oh-my-pi/pi-coding-agent/modes/setup-wizard/wizard-overlay",
680
- "@oh-my-pi/pi-coding-agent/modes/rpc/host-tools",
681
- "@oh-my-pi/pi-coding-agent/modes/rpc/host-uris",
682
- "@oh-my-pi/pi-coding-agent/modes/rpc/rpc-client",
683
- "@oh-my-pi/pi-coding-agent/modes/rpc/rpc-mode",
684
- "@oh-my-pi/pi-coding-agent/modes/rpc/rpc-subagents",
685
- "@oh-my-pi/pi-coding-agent/modes/rpc/rpc-types",
686
- "@oh-my-pi/pi-coding-agent/modes/theme/mermaid-cache",
687
- "@oh-my-pi/pi-coding-agent/modes/theme/shimmer",
688
- "@oh-my-pi/pi-coding-agent/modes/theme/theme",
689
- "@oh-my-pi/pi-coding-agent/modes/utils/context-usage",
690
- "@oh-my-pi/pi-coding-agent/modes/utils/copy-targets",
691
- "@oh-my-pi/pi-coding-agent/modes/utils/hotkeys-markdown",
692
- "@oh-my-pi/pi-coding-agent/modes/utils/interactive-context-helpers",
693
- "@oh-my-pi/pi-coding-agent/modes/utils/keybinding-matchers",
694
- "@oh-my-pi/pi-coding-agent/modes/utils/tools-markdown",
695
- "@oh-my-pi/pi-coding-agent/modes/utils/transcript-render-helpers",
696
- "@oh-my-pi/pi-coding-agent/modes/utils/ui-helpers",
697
- "@oh-my-pi/pi-coding-agent/plan-mode/approved-plan",
698
- "@oh-my-pi/pi-coding-agent/plan-mode/plan-handoff",
699
- "@oh-my-pi/pi-coding-agent/plan-mode/plan-protection",
700
- "@oh-my-pi/pi-coding-agent/plan-mode/state",
701
- "@oh-my-pi/pi-coding-agent/secrets/obfuscator",
702
- "@oh-my-pi/pi-coding-agent/secrets/regex",
703
- "@oh-my-pi/pi-coding-agent/session/agent-session",
704
- "@oh-my-pi/pi-coding-agent/session/agent-storage",
705
- "@oh-my-pi/pi-coding-agent/session/artifacts",
706
- "@oh-my-pi/pi-coding-agent/session/auth-broker-config",
707
- "@oh-my-pi/pi-coding-agent/session/auth-storage",
708
- "@oh-my-pi/pi-coding-agent/session/blob-store",
709
- "@oh-my-pi/pi-coding-agent/session/client-bridge",
710
- "@oh-my-pi/pi-coding-agent/session/codex-auto-reset",
711
- "@oh-my-pi/pi-coding-agent/session/compact-modes",
712
- "@oh-my-pi/pi-coding-agent/session/history-storage",
713
- "@oh-my-pi/pi-coding-agent/session/indexed-session-storage",
714
- "@oh-my-pi/pi-coding-agent/session/messages",
715
- "@oh-my-pi/pi-coding-agent/session/provider-image-budget",
716
- "@oh-my-pi/pi-coding-agent/session/redis-session-storage",
717
- "@oh-my-pi/pi-coding-agent/session/session-context",
718
- "@oh-my-pi/pi-coding-agent/session/session-dump-format",
719
- "@oh-my-pi/pi-coding-agent/session/session-entries",
720
- "@oh-my-pi/pi-coding-agent/session/session-history-format",
721
- "@oh-my-pi/pi-coding-agent/session/session-listing",
722
- "@oh-my-pi/pi-coding-agent/session/session-loader",
723
- "@oh-my-pi/pi-coding-agent/session/session-manager",
724
- "@oh-my-pi/pi-coding-agent/session/session-migrations",
725
- "@oh-my-pi/pi-coding-agent/session/session-paths",
726
- "@oh-my-pi/pi-coding-agent/session/session-persistence",
727
- "@oh-my-pi/pi-coding-agent/session/session-storage",
728
- "@oh-my-pi/pi-coding-agent/session/settings-stream-fn",
729
- "@oh-my-pi/pi-coding-agent/session/shake-types",
730
- "@oh-my-pi/pi-coding-agent/session/snapcompact-inline",
731
- "@oh-my-pi/pi-coding-agent/session/snapcompact-savings-journal",
732
- "@oh-my-pi/pi-coding-agent/session/sql-session-storage",
733
- "@oh-my-pi/pi-coding-agent/session/streaming-output",
734
- "@oh-my-pi/pi-coding-agent/session/tool-choice-queue",
735
- "@oh-my-pi/pi-coding-agent/session/turn-persistence",
736
- "@oh-my-pi/pi-coding-agent/session/unexpected-stop-classifier",
737
- "@oh-my-pi/pi-coding-agent/session/yield-queue",
738
- "@oh-my-pi/pi-coding-agent/slash-commands/acp-builtins",
739
- "@oh-my-pi/pi-coding-agent/slash-commands/available-commands",
740
- "@oh-my-pi/pi-coding-agent/slash-commands/builtin-registry",
741
- "@oh-my-pi/pi-coding-agent/slash-commands/marketplace-install-parser",
742
- "@oh-my-pi/pi-coding-agent/slash-commands/types",
743
- "@oh-my-pi/pi-coding-agent/ssh/config-writer",
744
- "@oh-my-pi/pi-coding-agent/ssh/connection-manager",
745
- "@oh-my-pi/pi-coding-agent/ssh/file-transfer",
746
- "@oh-my-pi/pi-coding-agent/ssh/ssh-executor",
747
- "@oh-my-pi/pi-coding-agent/ssh/sshfs-mount",
748
- "@oh-my-pi/pi-coding-agent/ssh/utils",
749
- "@oh-my-pi/pi-coding-agent/stt/asr-client",
750
- "@oh-my-pi/pi-coding-agent/stt/asr-protocol",
751
- "@oh-my-pi/pi-coding-agent/stt/asr-worker",
752
- "@oh-my-pi/pi-coding-agent/stt/downloader",
753
- "@oh-my-pi/pi-coding-agent/stt/endpointer",
754
- "@oh-my-pi/pi-coding-agent/stt/models",
755
- "@oh-my-pi/pi-coding-agent/stt/recorder",
756
- "@oh-my-pi/pi-coding-agent/stt/stt-controller",
757
- "@oh-my-pi/pi-coding-agent/stt/transcriber",
758
- "@oh-my-pi/pi-coding-agent/stt/wav",
759
- "@oh-my-pi/pi-coding-agent/task/agents",
760
- "@oh-my-pi/pi-coding-agent/task/commands",
761
- "@oh-my-pi/pi-coding-agent/task/discovery",
762
- "@oh-my-pi/pi-coding-agent/task/executor",
763
- "@oh-my-pi/pi-coding-agent/task/isolation-runner",
764
- "@oh-my-pi/pi-coding-agent/task/name-generator",
765
- "@oh-my-pi/pi-coding-agent/task/omp-command",
766
- "@oh-my-pi/pi-coding-agent/task/output-manager",
767
- "@oh-my-pi/pi-coding-agent/task/parallel",
768
- "@oh-my-pi/pi-coding-agent/task/persisted-revive",
769
- "@oh-my-pi/pi-coding-agent/task/render",
770
- "@oh-my-pi/pi-coding-agent/task/repair-args",
771
- "@oh-my-pi/pi-coding-agent/task/subprocess-tool-registry",
772
- "@oh-my-pi/pi-coding-agent/task/types",
773
- "@oh-my-pi/pi-coding-agent/task/worktree",
774
- "@oh-my-pi/pi-coding-agent/tool-discovery/mode",
775
- "@oh-my-pi/pi-coding-agent/tool-discovery/tool-index",
776
- "@oh-my-pi/pi-coding-agent/tools/acp-bridge",
777
- "@oh-my-pi/pi-coding-agent/tools/approval",
778
- "@oh-my-pi/pi-coding-agent/tools/ask",
779
- "@oh-my-pi/pi-coding-agent/tools/ast-edit",
780
- "@oh-my-pi/pi-coding-agent/tools/ast-grep",
781
- "@oh-my-pi/pi-coding-agent/tools/auto-generated-guard",
782
- "@oh-my-pi/pi-coding-agent/tools/bash-command-fixup",
783
- "@oh-my-pi/pi-coding-agent/tools/bash-interactive",
784
- "@oh-my-pi/pi-coding-agent/tools/bash-interceptor",
785
- "@oh-my-pi/pi-coding-agent/tools/bash-pty-selection",
786
- "@oh-my-pi/pi-coding-agent/tools/bash-skill-urls",
787
- "@oh-my-pi/pi-coding-agent/tools/bash",
788
- "@oh-my-pi/pi-coding-agent/tools/browser",
789
- "@oh-my-pi/pi-coding-agent/tools/builtin-names",
790
- "@oh-my-pi/pi-coding-agent/tools/checkpoint",
791
- "@oh-my-pi/pi-coding-agent/tools/conflict-detect",
792
- "@oh-my-pi/pi-coding-agent/tools/context",
793
- "@oh-my-pi/pi-coding-agent/tools/debug",
794
- "@oh-my-pi/pi-coding-agent/tools/eval-backends",
795
- "@oh-my-pi/pi-coding-agent/tools/eval-render",
796
- "@oh-my-pi/pi-coding-agent/tools/eval",
797
- "@oh-my-pi/pi-coding-agent/tools/fetch",
798
- "@oh-my-pi/pi-coding-agent/tools/file-recorder",
799
- "@oh-my-pi/pi-coding-agent/tools/fs-cache-invalidation",
800
- "@oh-my-pi/pi-coding-agent/tools/gh-cache-invalidation",
801
- "@oh-my-pi/pi-coding-agent/tools/gh-format",
802
- "@oh-my-pi/pi-coding-agent/tools/gh-renderer",
803
- "@oh-my-pi/pi-coding-agent/tools/gh",
804
- "@oh-my-pi/pi-coding-agent/tools/github-cache",
805
- "@oh-my-pi/pi-coding-agent/tools/glob",
806
- "@oh-my-pi/pi-coding-agent/tools/grep",
807
- "@oh-my-pi/pi-coding-agent/tools/grouped-file-output",
808
- "@oh-my-pi/pi-coding-agent/tools/image-gen",
809
- "@oh-my-pi/pi-coding-agent/tools/inspect-image-renderer",
810
- "@oh-my-pi/pi-coding-agent/tools/inspect-image",
811
- "@oh-my-pi/pi-coding-agent/tools/irc",
812
- "@oh-my-pi/pi-coding-agent/tools/job",
813
- "@oh-my-pi/pi-coding-agent/tools/json-tree",
814
- "@oh-my-pi/pi-coding-agent/tools/jtd-to-json-schema",
815
- "@oh-my-pi/pi-coding-agent/tools/jtd-to-typescript",
816
- "@oh-my-pi/pi-coding-agent/tools/jtd-utils",
817
- "@oh-my-pi/pi-coding-agent/tools/learn",
818
- "@oh-my-pi/pi-coding-agent/tools/list-limit",
819
- "@oh-my-pi/pi-coding-agent/tools/manage-skill",
820
- "@oh-my-pi/pi-coding-agent/tools/match-line-format",
821
- "@oh-my-pi/pi-coding-agent/tools/memory-edit",
822
- "@oh-my-pi/pi-coding-agent/tools/memory-recall",
823
- "@oh-my-pi/pi-coding-agent/tools/memory-reflect",
824
- "@oh-my-pi/pi-coding-agent/tools/memory-render",
825
- "@oh-my-pi/pi-coding-agent/tools/memory-retain",
826
- "@oh-my-pi/pi-coding-agent/tools/output-meta",
827
- "@oh-my-pi/pi-coding-agent/tools/output-schema-validator",
828
- "@oh-my-pi/pi-coding-agent/tools/path-utils",
829
- "@oh-my-pi/pi-coding-agent/tools/plan-mode-guard",
830
- "@oh-my-pi/pi-coding-agent/tools/read",
831
- "@oh-my-pi/pi-coding-agent/tools/render-utils",
832
- "@oh-my-pi/pi-coding-agent/tools/renderers",
833
- "@oh-my-pi/pi-coding-agent/tools/report-tool-issue",
834
- "@oh-my-pi/pi-coding-agent/tools/resolve",
835
- "@oh-my-pi/pi-coding-agent/tools/review",
836
- "@oh-my-pi/pi-coding-agent/tools/search-tool-bm25",
837
- "@oh-my-pi/pi-coding-agent/tools/sqlite-reader",
838
- "@oh-my-pi/pi-coding-agent/tools/ssh",
839
- "@oh-my-pi/pi-coding-agent/tools/todo",
840
- "@oh-my-pi/pi-coding-agent/tools/tool-errors",
841
- "@oh-my-pi/pi-coding-agent/tools/tool-result",
842
- "@oh-my-pi/pi-coding-agent/tools/tool-timeouts",
843
- "@oh-my-pi/pi-coding-agent/tools/tts",
844
- "@oh-my-pi/pi-coding-agent/tools/write",
845
- "@oh-my-pi/pi-coding-agent/tools/yield",
846
- "@oh-my-pi/pi-coding-agent/tui/code-cell",
847
- "@oh-my-pi/pi-coding-agent/tui/file-list",
848
- "@oh-my-pi/pi-coding-agent/tui/hyperlink",
849
- "@oh-my-pi/pi-coding-agent/tui/output-block",
850
- "@oh-my-pi/pi-coding-agent/tui/status-line",
851
- "@oh-my-pi/pi-coding-agent/tui/tree-list",
852
- "@oh-my-pi/pi-coding-agent/tui/types",
853
- "@oh-my-pi/pi-coding-agent/tui/utils",
854
- "@oh-my-pi/pi-coding-agent/tui/width-aware-text",
855
- "@oh-my-pi/pi-coding-agent/utils/active-repo-context",
856
- "@oh-my-pi/pi-coding-agent/utils/block-context",
857
- "@oh-my-pi/pi-coding-agent/utils/changelog",
858
- "@oh-my-pi/pi-coding-agent/utils/clipboard",
859
- "@oh-my-pi/pi-coding-agent/utils/command-args",
860
- "@oh-my-pi/pi-coding-agent/utils/commit-message-generator",
861
- "@oh-my-pi/pi-coding-agent/utils/edit-mode",
862
- "@oh-my-pi/pi-coding-agent/utils/enhanced-paste",
863
- "@oh-my-pi/pi-coding-agent/utils/event-bus",
864
- "@oh-my-pi/pi-coding-agent/utils/external-editor",
865
- "@oh-my-pi/pi-coding-agent/utils/file-display-mode",
866
- "@oh-my-pi/pi-coding-agent/utils/file-mentions",
867
- "@oh-my-pi/pi-coding-agent/utils/git",
868
- "@oh-my-pi/pi-coding-agent/utils/image-loading",
869
- "@oh-my-pi/pi-coding-agent/utils/image-resize",
870
- "@oh-my-pi/pi-coding-agent/utils/image-vision-fallback",
871
- "@oh-my-pi/pi-coding-agent/utils/ipc",
872
- "@oh-my-pi/pi-coding-agent/utils/jj",
873
- "@oh-my-pi/pi-coding-agent/utils/lang-from-path",
874
- "@oh-my-pi/pi-coding-agent/utils/markit-cache",
875
- "@oh-my-pi/pi-coding-agent/utils/markit",
876
- "@oh-my-pi/pi-coding-agent/utils/mupdf-wasm-embed",
877
- "@oh-my-pi/pi-coding-agent/utils/open",
878
- "@oh-my-pi/pi-coding-agent/utils/prompt-path",
879
- "@oh-my-pi/pi-coding-agent/utils/qrcode",
880
- "@oh-my-pi/pi-coding-agent/utils/session-color",
881
- "@oh-my-pi/pi-coding-agent/utils/shell-snapshot",
882
- "@oh-my-pi/pi-coding-agent/utils/sixel",
883
- "@oh-my-pi/pi-coding-agent/utils/thinking-display",
884
- "@oh-my-pi/pi-coding-agent/utils/title-generator",
885
- "@oh-my-pi/pi-coding-agent/utils/tool-choice",
886
- "@oh-my-pi/pi-coding-agent/utils/tools-manager",
887
- "@oh-my-pi/pi-coding-agent/utils/turndown",
888
- "@oh-my-pi/pi-coding-agent/utils/zip",
889
- "@oh-my-pi/pi-coding-agent/web/kagi",
890
- "@oh-my-pi/pi-coding-agent/web/parallel",
891
- "@oh-my-pi/pi-coding-agent/web/scrapers/artifacthub",
892
- "@oh-my-pi/pi-coding-agent/web/scrapers/arxiv",
893
- "@oh-my-pi/pi-coding-agent/web/scrapers/aur",
894
- "@oh-my-pi/pi-coding-agent/web/scrapers/biorxiv",
895
- "@oh-my-pi/pi-coding-agent/web/scrapers/bluesky",
896
- "@oh-my-pi/pi-coding-agent/web/scrapers/brew",
897
- "@oh-my-pi/pi-coding-agent/web/scrapers/cheatsh",
898
- "@oh-my-pi/pi-coding-agent/web/scrapers/chocolatey",
899
- "@oh-my-pi/pi-coding-agent/web/scrapers/choosealicense",
900
- "@oh-my-pi/pi-coding-agent/web/scrapers/cisa-kev",
901
- "@oh-my-pi/pi-coding-agent/web/scrapers/clojars",
902
- "@oh-my-pi/pi-coding-agent/web/scrapers/coingecko",
903
- "@oh-my-pi/pi-coding-agent/web/scrapers/crates-io",
904
- "@oh-my-pi/pi-coding-agent/web/scrapers/crossref",
905
- "@oh-my-pi/pi-coding-agent/web/scrapers/devto",
906
- "@oh-my-pi/pi-coding-agent/web/scrapers/discogs",
907
- "@oh-my-pi/pi-coding-agent/web/scrapers/discourse",
908
- "@oh-my-pi/pi-coding-agent/web/scrapers/dockerhub",
909
- "@oh-my-pi/pi-coding-agent/web/scrapers/docs-rs",
910
- "@oh-my-pi/pi-coding-agent/web/scrapers/fdroid",
911
- "@oh-my-pi/pi-coding-agent/web/scrapers/firefox-addons",
912
- "@oh-my-pi/pi-coding-agent/web/scrapers/flathub",
913
- "@oh-my-pi/pi-coding-agent/web/scrapers/github-gist",
914
- "@oh-my-pi/pi-coding-agent/web/scrapers/github",
915
- "@oh-my-pi/pi-coding-agent/web/scrapers/gitlab",
916
- "@oh-my-pi/pi-coding-agent/web/scrapers/go-pkg",
917
- "@oh-my-pi/pi-coding-agent/web/scrapers/hackage",
918
- "@oh-my-pi/pi-coding-agent/web/scrapers/hackernews",
919
- "@oh-my-pi/pi-coding-agent/web/scrapers/hex",
920
- "@oh-my-pi/pi-coding-agent/web/scrapers/huggingface",
921
- "@oh-my-pi/pi-coding-agent/web/scrapers/iacr",
922
- "@oh-my-pi/pi-coding-agent/web/scrapers/jetbrains-marketplace",
923
- "@oh-my-pi/pi-coding-agent/web/scrapers/lemmy",
924
- "@oh-my-pi/pi-coding-agent/web/scrapers/lobsters",
925
- "@oh-my-pi/pi-coding-agent/web/scrapers/mastodon",
926
- "@oh-my-pi/pi-coding-agent/web/scrapers/maven",
927
- "@oh-my-pi/pi-coding-agent/web/scrapers/mdn",
928
- "@oh-my-pi/pi-coding-agent/web/scrapers/metacpan",
929
- "@oh-my-pi/pi-coding-agent/web/scrapers/musicbrainz",
930
- "@oh-my-pi/pi-coding-agent/web/scrapers/npm",
931
- "@oh-my-pi/pi-coding-agent/web/scrapers/nuget",
932
- "@oh-my-pi/pi-coding-agent/web/scrapers/nvd",
933
- "@oh-my-pi/pi-coding-agent/web/scrapers/ollama",
934
- "@oh-my-pi/pi-coding-agent/web/scrapers/open-vsx",
935
- "@oh-my-pi/pi-coding-agent/web/scrapers/opencorporates",
936
- "@oh-my-pi/pi-coding-agent/web/scrapers/openlibrary",
937
- "@oh-my-pi/pi-coding-agent/web/scrapers/orcid",
938
- "@oh-my-pi/pi-coding-agent/web/scrapers/osv",
939
- "@oh-my-pi/pi-coding-agent/web/scrapers/packagist",
940
- "@oh-my-pi/pi-coding-agent/web/scrapers/pub-dev",
941
- "@oh-my-pi/pi-coding-agent/web/scrapers/pubmed",
942
- "@oh-my-pi/pi-coding-agent/web/scrapers/pypi",
943
- "@oh-my-pi/pi-coding-agent/web/scrapers/rawg",
944
- "@oh-my-pi/pi-coding-agent/web/scrapers/readthedocs",
945
- "@oh-my-pi/pi-coding-agent/web/scrapers/reddit",
946
- "@oh-my-pi/pi-coding-agent/web/scrapers/repology",
947
- "@oh-my-pi/pi-coding-agent/web/scrapers/rfc",
948
- "@oh-my-pi/pi-coding-agent/web/scrapers/rubygems",
949
- "@oh-my-pi/pi-coding-agent/web/scrapers/searchcode",
950
- "@oh-my-pi/pi-coding-agent/web/scrapers/sec-edgar",
951
- "@oh-my-pi/pi-coding-agent/web/scrapers/semantic-scholar",
952
- "@oh-my-pi/pi-coding-agent/web/scrapers/snapcraft",
953
- "@oh-my-pi/pi-coding-agent/web/scrapers/sourcegraph",
954
- "@oh-my-pi/pi-coding-agent/web/scrapers/spdx",
955
- "@oh-my-pi/pi-coding-agent/web/scrapers/spotify",
956
- "@oh-my-pi/pi-coding-agent/web/scrapers/stackoverflow",
957
- "@oh-my-pi/pi-coding-agent/web/scrapers/terraform",
958
- "@oh-my-pi/pi-coding-agent/web/scrapers/tldr",
959
- "@oh-my-pi/pi-coding-agent/web/scrapers/twitter",
960
- "@oh-my-pi/pi-coding-agent/web/scrapers/types",
961
- "@oh-my-pi/pi-coding-agent/web/scrapers/utils",
962
- "@oh-my-pi/pi-coding-agent/web/scrapers/vimeo",
963
- "@oh-my-pi/pi-coding-agent/web/scrapers/vscode-marketplace",
964
- "@oh-my-pi/pi-coding-agent/web/scrapers/w3c",
965
- "@oh-my-pi/pi-coding-agent/web/scrapers/wikidata",
966
- "@oh-my-pi/pi-coding-agent/web/scrapers/wikipedia",
967
- "@oh-my-pi/pi-coding-agent/web/scrapers/youtube",
968
- "@oh-my-pi/pi-coding-agent/web/search/provider",
969
- "@oh-my-pi/pi-coding-agent/web/search/render",
970
- "@oh-my-pi/pi-coding-agent/web/search/types",
971
- "@oh-my-pi/pi-coding-agent/web/search/utils",
972
- "@oh-my-pi/pi-coding-agent/web/search/providers/anthropic",
973
- "@oh-my-pi/pi-coding-agent/web/search/providers/base",
974
- "@oh-my-pi/pi-coding-agent/web/search/providers/brave",
975
- "@oh-my-pi/pi-coding-agent/web/search/providers/codex",
976
- "@oh-my-pi/pi-coding-agent/web/search/providers/duckduckgo",
977
- "@oh-my-pi/pi-coding-agent/web/search/providers/exa",
978
- "@oh-my-pi/pi-coding-agent/web/search/providers/firecrawl",
979
- "@oh-my-pi/pi-coding-agent/web/search/providers/gemini",
980
- "@oh-my-pi/pi-coding-agent/web/search/providers/jina",
981
- "@oh-my-pi/pi-coding-agent/web/search/providers/kagi",
982
- "@oh-my-pi/pi-coding-agent/web/search/providers/kimi",
983
- "@oh-my-pi/pi-coding-agent/web/search/providers/parallel",
984
- "@oh-my-pi/pi-coding-agent/web/search/providers/perplexity-auth",
985
- "@oh-my-pi/pi-coding-agent/web/search/providers/perplexity",
986
- "@oh-my-pi/pi-coding-agent/web/search/providers/searxng",
987
- "@oh-my-pi/pi-coding-agent/web/search/providers/synthetic",
988
- "@oh-my-pi/pi-coding-agent/web/search/providers/tavily",
989
- "@oh-my-pi/pi-coding-agent/web/search/providers/tinyfish",
990
- "@oh-my-pi/pi-coding-agent/web/search/providers/utils",
991
- "@oh-my-pi/pi-coding-agent/web/search/providers/xai",
992
- "@oh-my-pi/pi-coding-agent/web/search/providers/zai",
993
- "@oh-my-pi/pi-natives",
994
- "@oh-my-pi/pi-tui",
995
- "@oh-my-pi/pi-tui/components/box",
996
- "@oh-my-pi/pi-tui/components/cancellable-loader",
997
- "@oh-my-pi/pi-tui/components/editor",
998
- "@oh-my-pi/pi-tui/components/image",
999
- "@oh-my-pi/pi-tui/components/input",
1000
- "@oh-my-pi/pi-tui/components/loader",
1001
- "@oh-my-pi/pi-tui/components/markdown",
1002
- "@oh-my-pi/pi-tui/components/scroll-view",
1003
- "@oh-my-pi/pi-tui/components/select-list",
1004
- "@oh-my-pi/pi-tui/components/settings-list",
1005
- "@oh-my-pi/pi-tui/components/spacer",
1006
- "@oh-my-pi/pi-tui/components/tab-bar",
1007
- "@oh-my-pi/pi-tui/components/text",
1008
- "@oh-my-pi/pi-tui/components/truncated-text",
1009
- "@oh-my-pi/pi-utils",
1010
- "typebox",
1011
- ]);