claude-all-config 2.0.0

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 (167) hide show
  1. package/LICENSE +21 -0
  2. package/LICENSE.md +70 -0
  3. package/README.md +133 -0
  4. package/VERSION +1 -0
  5. package/agents/accessibility-reviewer.md +96 -0
  6. package/agents/ai-prompt-optimizer.md +94 -0
  7. package/agents/api-tester.md +102 -0
  8. package/agents/code-generator.md +94 -0
  9. package/agents/code-reviewer.md +47 -0
  10. package/agents/component-generator.md +102 -0
  11. package/agents/doc-generator.md +91 -0
  12. package/agents/migration-generator.md +94 -0
  13. package/agents/performance-analyzer.md +90 -0
  14. package/agents/proactive-mode.md +91 -0
  15. package/agents/readme-generator.md +101 -0
  16. package/agents/security-auditor.md +86 -0
  17. package/agents/terraform-generator.md +94 -0
  18. package/agents/test-generator.md +76 -0
  19. package/bin/agentrouter.json +36 -0
  20. package/bin/ai-chat +20 -0
  21. package/bin/antigravity.json +76 -0
  22. package/bin/api-manager +340 -0
  23. package/bin/claude-launcher +19 -0
  24. package/bin/claude-master +15 -0
  25. package/bin/claude_master.py +295 -0
  26. package/bin/cohere.json +7 -0
  27. package/bin/deepseek.json +44 -0
  28. package/bin/gemini.json +56 -0
  29. package/bin/glm.json +21 -0
  30. package/bin/groq.json +41 -0
  31. package/bin/minimax.json +26 -0
  32. package/bin/mistral.json +7 -0
  33. package/bin/moonshot.json +7 -0
  34. package/bin/ollama.json +36 -0
  35. package/bin/openai.json +46 -0
  36. package/bin/openrouter.json +38 -0
  37. package/bin/perplexity.json +12 -0
  38. package/bin/qwen.json +7 -0
  39. package/bin/switch-provider +73 -0
  40. package/bin/test.json +7 -0
  41. package/bin/xai.json +41 -0
  42. package/claude-all +2707 -0
  43. package/claude-config.json +340 -0
  44. package/claude-suite/REFACTORING_SUMMARY.md +88 -0
  45. package/claude-suite/auth/.antigravity_proxy.py +78 -0
  46. package/claude-suite/auth/__pycache__/openai_auth.cpython-312.pyc +0 -0
  47. package/claude-suite/auth/gemini_auth.py +80 -0
  48. package/claude-suite/auth/openai_auth.py +138 -0
  49. package/claude-suite/backups/claude-all-before-refactor +1075 -0
  50. package/claude-suite/backups/claude-all.backup +840 -0
  51. package/claude-suite/backups/claude-all.original +840 -0
  52. package/claude-suite/models/add-model-manual.sh +588 -0
  53. package/claude-suite/models/add-model.sh +114 -0
  54. package/claude-suite/models/model-switcher.sh +69 -0
  55. package/claude-suite/providers/claude-glm +89 -0
  56. package/claude-suite/providers/claude-glm-wrapper.sh +55 -0
  57. package/claude-suite/providers/claude-minimax +12 -0
  58. package/claude-suite/providers/claude-smart +132 -0
  59. package/claude-suite/providers/xai_chat.sh +56 -0
  60. package/claude-suite/utils/__pycache__/claude_master.cpython-312.pyc +0 -0
  61. package/claude-suite/utils/antigravity_proxy_server.py +168 -0
  62. package/claude-suite/utils/claude-all-help.txt +83 -0
  63. package/claude-suite/utils/claude_master.py +408 -0
  64. package/commands/brainstorm.md +5 -0
  65. package/commands/execute-plan.md +5 -0
  66. package/commands/write-plan.md +5 -0
  67. package/docs/ANTIGRAVITY-SETUP.md +176 -0
  68. package/docs/AUTH_CREDENTIALS.md +54 -0
  69. package/docs/NPM-INSTALLATION.md +166 -0
  70. package/hooks/hooks.json +15 -0
  71. package/hooks/run-hook.cmd +19 -0
  72. package/hooks/session-start.sh +52 -0
  73. package/install.sh +155 -0
  74. package/mcp.json +34 -0
  75. package/model/perplexity.json +12 -0
  76. package/package.json +69 -0
  77. package/plugins/README.md +47 -0
  78. package/plugins/installed_plugins.json +317 -0
  79. package/plugins/known_marketplaces.json +10 -0
  80. package/plugins/marketplace-info/marketplace.json +517 -0
  81. package/postinstall.js +100 -0
  82. package/scripts/antigravity_proxy_server.py +168 -0
  83. package/scripts/get_gemini_api_key.py +96 -0
  84. package/scripts/setup_antigravity_auth.py +171 -0
  85. package/skills/api-development/SKILL.md +11 -0
  86. package/skills/api-development/openapi/api-documentation.yaml +108 -0
  87. package/skills/brainstorming/SKILL.md +54 -0
  88. package/skills/code-quality/SKILL.md +196 -0
  89. package/skills/condition-based-waiting/SKILL.md +120 -0
  90. package/skills/condition-based-waiting/example.ts +158 -0
  91. package/skills/database-development/SKILL.md +11 -0
  92. package/skills/database-development/migrations/migration.template.sql +49 -0
  93. package/skills/defense-in-depth/SKILL.md +127 -0
  94. package/skills/deployment/SKILL.md +11 -0
  95. package/skills/deployment/ci-cd/github-actions.yml +95 -0
  96. package/skills/deployment/docker/Dockerfile.template +39 -0
  97. package/skills/dispatching-parallel-agents/SKILL.md +180 -0
  98. package/skills/documentation-generation/SKILL.md +8 -0
  99. package/skills/documentation-generation/templates/README.template.md +60 -0
  100. package/skills/error-handling/SKILL.md +267 -0
  101. package/skills/executing-plans/SKILL.md +76 -0
  102. package/skills/finishing-a-development-branch/SKILL.md +200 -0
  103. package/skills/frontend-design/frontend-design/SKILL.md +42 -0
  104. package/skills/integration-testing/SKILL.md +13 -0
  105. package/skills/integration-testing/examples/contract-test.py +317 -0
  106. package/skills/integration-testing/examples/e2e-test.js +147 -0
  107. package/skills/integration-testing/examples/test-isolation.md +94 -0
  108. package/skills/logging-monitoring/SKILL.md +66 -0
  109. package/skills/mobile-development/SKILL.md +11 -0
  110. package/skills/mobile-development/responsive/responsive.css +80 -0
  111. package/skills/performance-optimization/SKILL.md +9 -0
  112. package/skills/performance-optimization/profiling/profile.template.js +21 -0
  113. package/skills/receiving-code-review/SKILL.md +209 -0
  114. package/skills/refactoring/SKILL.md +11 -0
  115. package/skills/refactoring/code-smells/common-smells.md +115 -0
  116. package/skills/requesting-code-review/SKILL.md +105 -0
  117. package/skills/requesting-code-review/code-reviewer.md +146 -0
  118. package/skills/root-cause-tracing/SKILL.md +174 -0
  119. package/skills/root-cause-tracing/find-polluter.sh +63 -0
  120. package/skills/security-review/SKILL.md +11 -0
  121. package/skills/security-review/checklists/owasp-checklist.md +31 -0
  122. package/skills/sharing-skills/SKILL.md +194 -0
  123. package/skills/subagent-driven-development/SKILL.md +240 -0
  124. package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
  125. package/skills/subagent-driven-development/implementer-prompt.md +78 -0
  126. package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  127. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  128. package/skills/systematic-debugging/SKILL.md +295 -0
  129. package/skills/systematic-debugging/test-academic.md +14 -0
  130. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  131. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  132. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  133. package/skills/test-driven-development/SKILL.md +364 -0
  134. package/skills/testing-anti-patterns/SKILL.md +302 -0
  135. package/skills/testing-skills-with-subagents/SKILL.md +387 -0
  136. package/skills/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +189 -0
  137. package/skills/ui-ux-review/SKILL.md +13 -0
  138. package/skills/ui-ux-review/checklists/ux-heuristics.md +61 -0
  139. package/skills/using-git-worktrees/SKILL.md +213 -0
  140. package/skills/using-superpowers/SKILL.md +101 -0
  141. package/skills/verification-before-completion/SKILL.md +139 -0
  142. package/skills/writing-plans/SKILL.md +116 -0
  143. package/skills/writing-skills/SKILL.md +622 -0
  144. package/skills/writing-skills/anthropic-best-practices.md +1150 -0
  145. package/skills/writing-skills/graphviz-conventions.dot +172 -0
  146. package/skills/writing-skills/persuasion-principles.md +187 -0
  147. package/update.sh +36 -0
  148. package/utils/check-superpowers.sh +114 -0
  149. package/utils/claude-branding.md +166 -0
  150. package/utils/config.js +185 -0
  151. package/utils/custom-claude-config.sh +89 -0
  152. package/utils/custom-claude-hooks.md +129 -0
  153. package/utils/custom-claude-lib.js +222 -0
  154. package/utils/customize-claude-ui.sh +162 -0
  155. package/utils/fix-claude-integration.sh +133 -0
  156. package/utils/help.js +125 -0
  157. package/utils/install-curl.ps1 +135 -0
  158. package/utils/install-curl.sh +525 -0
  159. package/utils/install-superpowers.js +411 -0
  160. package/utils/install.js +298 -0
  161. package/utils/install.sh +182 -0
  162. package/utils/postinstall.js +63 -0
  163. package/utils/rename-claude.sh +96 -0
  164. package/utils/uninstall-superpowers.js +273 -0
  165. package/utils/uninstall.ps1 +136 -0
  166. package/utils/uninstall.sh +163 -0
  167. package/utils/update.sh +160 -0
@@ -0,0 +1,317 @@
1
+ {
2
+ "version": 2,
3
+ "plugins": {
4
+ "security-guidance@claude-plugins-official": [
5
+ {
6
+ "scope": "project",
7
+ "projectPath": "/data/data/com.termux/files/home",
8
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/security-guidance/b97f6eadd929",
9
+ "version": "b97f6eadd929",
10
+ "installedAt": "2026-01-07T04:10:33.806Z",
11
+ "lastUpdated": "2026-01-07T04:10:52.461Z",
12
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
13
+ "isLocal": true
14
+ }
15
+ ],
16
+ "frontend-design@claude-plugins-official": [
17
+ {
18
+ "scope": "project",
19
+ "projectPath": "/data/data/com.termux/files/home",
20
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/frontend-design/b97f6eadd929",
21
+ "version": "b97f6eadd929",
22
+ "installedAt": "2026-01-07T04:12:23.311Z",
23
+ "lastUpdated": "2026-01-07T04:35:38.675Z",
24
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
25
+ "isLocal": true
26
+ }
27
+ ],
28
+ "code-review@claude-plugins-official": [
29
+ {
30
+ "scope": "project",
31
+ "projectPath": "/data/data/com.termux/files/home",
32
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/code-review/b97f6eadd929",
33
+ "version": "b97f6eadd929",
34
+ "installedAt": "2026-01-07T04:12:43.484Z",
35
+ "lastUpdated": "2026-01-07T04:35:38.855Z",
36
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
37
+ "isLocal": true
38
+ }
39
+ ],
40
+ "github@claude-plugins-official": [
41
+ {
42
+ "scope": "project",
43
+ "projectPath": "/data/data/com.termux/files/home",
44
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/github/b97f6eadd929",
45
+ "version": "b97f6eadd929",
46
+ "installedAt": "2026-01-07T04:14:46.528Z",
47
+ "lastUpdated": "2026-01-07T04:35:38.866Z",
48
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
49
+ "isLocal": true
50
+ }
51
+ ],
52
+ "serena@claude-plugins-official": [
53
+ {
54
+ "scope": "project",
55
+ "projectPath": "/data/data/com.termux/files/home",
56
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/serena/b97f6eadd929",
57
+ "version": "b97f6eadd929",
58
+ "installedAt": "2026-01-07T04:15:06.744Z",
59
+ "lastUpdated": "2026-01-07T04:35:38.877Z",
60
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
61
+ "isLocal": true
62
+ }
63
+ ],
64
+ "feature-dev@claude-plugins-official": [
65
+ {
66
+ "scope": "project",
67
+ "projectPath": "/data/data/com.termux/files/home",
68
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/feature-dev/b97f6eadd929",
69
+ "version": "b97f6eadd929",
70
+ "installedAt": "2026-01-07T04:15:24.188Z",
71
+ "lastUpdated": "2026-01-07T04:35:38.888Z",
72
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
73
+ "isLocal": true
74
+ }
75
+ ],
76
+ "commit-commands@claude-plugins-official": [
77
+ {
78
+ "scope": "project",
79
+ "projectPath": "/data/data/com.termux/files/home",
80
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/commit-commands/b97f6eadd929",
81
+ "version": "b97f6eadd929",
82
+ "installedAt": "2026-01-07T04:15:51.625Z",
83
+ "lastUpdated": "2026-01-07T04:35:38.899Z",
84
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
85
+ "isLocal": true
86
+ }
87
+ ],
88
+ "typescript-lsp@claude-plugins-official": [
89
+ {
90
+ "scope": "project",
91
+ "projectPath": "/data/data/com.termux/files/home",
92
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/typescript-lsp/1.0.0",
93
+ "version": "1.0.0",
94
+ "installedAt": "2026-01-07T04:16:19.755Z",
95
+ "lastUpdated": "2026-01-07T04:16:19.755Z",
96
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
97
+ "isLocal": true
98
+ }
99
+ ],
100
+ "atlassian@claude-plugins-official": [
101
+ {
102
+ "scope": "project",
103
+ "projectPath": "/data/data/com.termux/files/home",
104
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/atlassian/c2625747baa8",
105
+ "version": "c2625747baa8",
106
+ "installedAt": "2026-01-07T04:18:00.839Z",
107
+ "lastUpdated": "2026-01-07T04:35:39.404Z",
108
+ "gitCommitSha": "c2625747baa8863ed7ca0f9f1f320d7a8ea1d928",
109
+ "isLocal": false
110
+ }
111
+ ],
112
+ "agent-sdk-dev@claude-plugins-official": [
113
+ {
114
+ "scope": "project",
115
+ "projectPath": "/data/data/com.termux/files/home",
116
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/agent-sdk-dev/b97f6eadd929",
117
+ "version": "b97f6eadd929",
118
+ "installedAt": "2026-01-07T04:18:27.366Z",
119
+ "lastUpdated": "2026-01-07T04:35:38.906Z",
120
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
121
+ "isLocal": true
122
+ }
123
+ ],
124
+ "playwright@claude-plugins-official": [
125
+ {
126
+ "scope": "project",
127
+ "projectPath": "/data/data/com.termux/files/home",
128
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/playwright/b97f6eadd929",
129
+ "version": "b97f6eadd929",
130
+ "installedAt": "2026-01-07T04:21:22.980Z",
131
+ "lastUpdated": "2026-01-07T04:35:38.920Z",
132
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
133
+ "isLocal": true
134
+ }
135
+ ],
136
+ "pr-review-toolkit@claude-plugins-official": [
137
+ {
138
+ "scope": "project",
139
+ "projectPath": "/data/data/com.termux/files/home",
140
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/pr-review-toolkit/b97f6eadd929",
141
+ "version": "b97f6eadd929",
142
+ "installedAt": "2026-01-07T04:22:17.753Z",
143
+ "lastUpdated": "2026-01-07T04:35:38.930Z",
144
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
145
+ "isLocal": true
146
+ }
147
+ ],
148
+ "explanatory-output-style@claude-plugins-official": [
149
+ {
150
+ "scope": "project",
151
+ "projectPath": "/data/data/com.termux/files/home",
152
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/explanatory-output-style/b97f6eadd929",
153
+ "version": "b97f6eadd929",
154
+ "installedAt": "2026-01-07T04:23:04.501Z",
155
+ "lastUpdated": "2026-01-07T04:35:38.946Z",
156
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
157
+ "isLocal": true
158
+ }
159
+ ],
160
+ "plugin-dev@claude-plugins-official": [
161
+ {
162
+ "scope": "project",
163
+ "projectPath": "/data/data/com.termux/files/home",
164
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/plugin-dev/b97f6eadd929",
165
+ "version": "b97f6eadd929",
166
+ "installedAt": "2026-01-07T04:23:23.314Z",
167
+ "lastUpdated": "2026-01-07T04:35:38.958Z",
168
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
169
+ "isLocal": true
170
+ }
171
+ ],
172
+ "linear@claude-plugins-official": [
173
+ {
174
+ "scope": "project",
175
+ "projectPath": "/data/data/com.termux/files/home",
176
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/linear/b97f6eadd929",
177
+ "version": "b97f6eadd929",
178
+ "installedAt": "2026-01-07T04:23:56.655Z",
179
+ "lastUpdated": "2026-01-07T04:35:38.969Z",
180
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
181
+ "isLocal": true
182
+ }
183
+ ],
184
+ "hookify@claude-plugins-official": [
185
+ {
186
+ "scope": "project",
187
+ "projectPath": "/data/data/com.termux/files/home",
188
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/hookify/b97f6eadd929",
189
+ "version": "b97f6eadd929",
190
+ "installedAt": "2026-01-07T04:27:00.945Z",
191
+ "lastUpdated": "2026-01-07T04:35:38.984Z",
192
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
193
+ "isLocal": true
194
+ }
195
+ ],
196
+ "greptile@claude-plugins-official": [
197
+ {
198
+ "scope": "project",
199
+ "projectPath": "/data/data/com.termux/files/home",
200
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/greptile/b97f6eadd929",
201
+ "version": "b97f6eadd929",
202
+ "installedAt": "2026-01-07T04:27:27.358Z",
203
+ "lastUpdated": "2026-01-07T04:35:38.997Z",
204
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
205
+ "isLocal": true
206
+ }
207
+ ],
208
+ "learning-output-style@claude-plugins-official": [
209
+ {
210
+ "scope": "project",
211
+ "projectPath": "/data/data/com.termux/files/home",
212
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/learning-output-style/b97f6eadd929",
213
+ "version": "b97f6eadd929",
214
+ "installedAt": "2026-01-07T04:28:39.200Z",
215
+ "lastUpdated": "2026-01-07T04:35:39.009Z",
216
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
217
+ "isLocal": true
218
+ }
219
+ ],
220
+ "sentry@claude-plugins-official": [
221
+ {
222
+ "scope": "project",
223
+ "projectPath": "/data/data/com.termux/files/home",
224
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/sentry/1.0.0",
225
+ "version": "1.0.0",
226
+ "installedAt": "2026-01-07T04:28:59.008Z",
227
+ "lastUpdated": "2026-01-07T04:28:59.008Z",
228
+ "gitCommitSha": "215e5f1bf44a5a332da8fb3661980658b8db116c",
229
+ "isLocal": false
230
+ }
231
+ ],
232
+ "gopls-lsp@claude-plugins-official": [
233
+ {
234
+ "scope": "project",
235
+ "projectPath": "/data/data/com.termux/files/home",
236
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/gopls-lsp/1.0.0",
237
+ "version": "1.0.0",
238
+ "installedAt": "2026-01-07T04:29:26.302Z",
239
+ "lastUpdated": "2026-01-07T04:29:26.302Z",
240
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
241
+ "isLocal": true
242
+ }
243
+ ],
244
+ "firebase@claude-plugins-official": [
245
+ {
246
+ "scope": "project",
247
+ "projectPath": "/data/data/com.termux/files/home",
248
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/firebase/b97f6eadd929",
249
+ "version": "b97f6eadd929",
250
+ "installedAt": "2026-01-07T04:29:58.715Z",
251
+ "lastUpdated": "2026-01-07T04:35:39.021Z",
252
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
253
+ "isLocal": true
254
+ }
255
+ ],
256
+ "swift-lsp@claude-plugins-official": [
257
+ {
258
+ "scope": "project",
259
+ "projectPath": "/data/data/com.termux/files/home",
260
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/swift-lsp/1.0.0",
261
+ "version": "1.0.0",
262
+ "installedAt": "2026-01-07T04:30:55.112Z",
263
+ "lastUpdated": "2026-01-07T04:30:55.112Z",
264
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
265
+ "isLocal": true
266
+ }
267
+ ],
268
+ "ralph-loop@claude-plugins-official": [
269
+ {
270
+ "scope": "project",
271
+ "projectPath": "/data/data/com.termux/files/home",
272
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/ralph-loop/b97f6eadd929",
273
+ "version": "b97f6eadd929",
274
+ "installedAt": "2026-01-07T04:31:45.428Z",
275
+ "lastUpdated": "2026-01-07T04:35:39.032Z",
276
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
277
+ "isLocal": true
278
+ }
279
+ ],
280
+ "pinecone@claude-plugins-official": [
281
+ {
282
+ "scope": "project",
283
+ "projectPath": "/data/data/com.termux/files/home",
284
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/pinecone/1.0.0",
285
+ "version": "1.0.0",
286
+ "installedAt": "2026-01-07T04:32:44.588Z",
287
+ "lastUpdated": "2026-01-07T04:32:44.588Z",
288
+ "gitCommitSha": "0aa7f170b11400327815f96511b671923cb55608",
289
+ "isLocal": false
290
+ }
291
+ ],
292
+ "asana@claude-plugins-official": [
293
+ {
294
+ "scope": "project",
295
+ "projectPath": "/data/data/com.termux/files/home",
296
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/asana/b97f6eadd929",
297
+ "version": "b97f6eadd929",
298
+ "installedAt": "2026-01-07T04:33:46.859Z",
299
+ "lastUpdated": "2026-01-07T04:35:39.043Z",
300
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
301
+ "isLocal": true
302
+ }
303
+ ],
304
+ "lua-lsp@claude-plugins-official": [
305
+ {
306
+ "scope": "project",
307
+ "projectPath": "/data/data/com.termux/files/home",
308
+ "installPath": "/data/data/com.termux/files/home/.claude/plugins/cache/claude-plugins-official/lua-lsp/1.0.0",
309
+ "version": "1.0.0",
310
+ "installedAt": "2026-01-07T04:34:14.951Z",
311
+ "lastUpdated": "2026-01-07T04:34:14.951Z",
312
+ "gitCommitSha": "d29d8042d18ac7f272ab5393e87c19752e303244",
313
+ "isLocal": true
314
+ }
315
+ ]
316
+ }
317
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "claude-plugins-official": {
3
+ "source": {
4
+ "source": "github",
5
+ "repo": "anthropics/claude-plugins-official"
6
+ },
7
+ "installLocation": "/data/data/com.termux/files/home/.claude/plugins/marketplaces/claude-plugins-official",
8
+ "lastUpdated": "2026-01-07T05:53:33.048Z"
9
+ }
10
+ }