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.
- package/LICENSE +21 -0
- package/LICENSE.md +70 -0
- package/README.md +133 -0
- package/VERSION +1 -0
- package/agents/accessibility-reviewer.md +96 -0
- package/agents/ai-prompt-optimizer.md +94 -0
- package/agents/api-tester.md +102 -0
- package/agents/code-generator.md +94 -0
- package/agents/code-reviewer.md +47 -0
- package/agents/component-generator.md +102 -0
- package/agents/doc-generator.md +91 -0
- package/agents/migration-generator.md +94 -0
- package/agents/performance-analyzer.md +90 -0
- package/agents/proactive-mode.md +91 -0
- package/agents/readme-generator.md +101 -0
- package/agents/security-auditor.md +86 -0
- package/agents/terraform-generator.md +94 -0
- package/agents/test-generator.md +76 -0
- package/bin/agentrouter.json +36 -0
- package/bin/ai-chat +20 -0
- package/bin/antigravity.json +76 -0
- package/bin/api-manager +340 -0
- package/bin/claude-launcher +19 -0
- package/bin/claude-master +15 -0
- package/bin/claude_master.py +295 -0
- package/bin/cohere.json +7 -0
- package/bin/deepseek.json +44 -0
- package/bin/gemini.json +56 -0
- package/bin/glm.json +21 -0
- package/bin/groq.json +41 -0
- package/bin/minimax.json +26 -0
- package/bin/mistral.json +7 -0
- package/bin/moonshot.json +7 -0
- package/bin/ollama.json +36 -0
- package/bin/openai.json +46 -0
- package/bin/openrouter.json +38 -0
- package/bin/perplexity.json +12 -0
- package/bin/qwen.json +7 -0
- package/bin/switch-provider +73 -0
- package/bin/test.json +7 -0
- package/bin/xai.json +41 -0
- package/claude-all +2707 -0
- package/claude-config.json +340 -0
- package/claude-suite/REFACTORING_SUMMARY.md +88 -0
- package/claude-suite/auth/.antigravity_proxy.py +78 -0
- package/claude-suite/auth/__pycache__/openai_auth.cpython-312.pyc +0 -0
- package/claude-suite/auth/gemini_auth.py +80 -0
- package/claude-suite/auth/openai_auth.py +138 -0
- package/claude-suite/backups/claude-all-before-refactor +1075 -0
- package/claude-suite/backups/claude-all.backup +840 -0
- package/claude-suite/backups/claude-all.original +840 -0
- package/claude-suite/models/add-model-manual.sh +588 -0
- package/claude-suite/models/add-model.sh +114 -0
- package/claude-suite/models/model-switcher.sh +69 -0
- package/claude-suite/providers/claude-glm +89 -0
- package/claude-suite/providers/claude-glm-wrapper.sh +55 -0
- package/claude-suite/providers/claude-minimax +12 -0
- package/claude-suite/providers/claude-smart +132 -0
- package/claude-suite/providers/xai_chat.sh +56 -0
- package/claude-suite/utils/__pycache__/claude_master.cpython-312.pyc +0 -0
- package/claude-suite/utils/antigravity_proxy_server.py +168 -0
- package/claude-suite/utils/claude-all-help.txt +83 -0
- package/claude-suite/utils/claude_master.py +408 -0
- package/commands/brainstorm.md +5 -0
- package/commands/execute-plan.md +5 -0
- package/commands/write-plan.md +5 -0
- package/docs/ANTIGRAVITY-SETUP.md +176 -0
- package/docs/AUTH_CREDENTIALS.md +54 -0
- package/docs/NPM-INSTALLATION.md +166 -0
- package/hooks/hooks.json +15 -0
- package/hooks/run-hook.cmd +19 -0
- package/hooks/session-start.sh +52 -0
- package/install.sh +155 -0
- package/mcp.json +34 -0
- package/model/perplexity.json +12 -0
- package/package.json +69 -0
- package/plugins/README.md +47 -0
- package/plugins/installed_plugins.json +317 -0
- package/plugins/known_marketplaces.json +10 -0
- package/plugins/marketplace-info/marketplace.json +517 -0
- package/postinstall.js +100 -0
- package/scripts/antigravity_proxy_server.py +168 -0
- package/scripts/get_gemini_api_key.py +96 -0
- package/scripts/setup_antigravity_auth.py +171 -0
- package/skills/api-development/SKILL.md +11 -0
- package/skills/api-development/openapi/api-documentation.yaml +108 -0
- package/skills/brainstorming/SKILL.md +54 -0
- package/skills/code-quality/SKILL.md +196 -0
- package/skills/condition-based-waiting/SKILL.md +120 -0
- package/skills/condition-based-waiting/example.ts +158 -0
- package/skills/database-development/SKILL.md +11 -0
- package/skills/database-development/migrations/migration.template.sql +49 -0
- package/skills/defense-in-depth/SKILL.md +127 -0
- package/skills/deployment/SKILL.md +11 -0
- package/skills/deployment/ci-cd/github-actions.yml +95 -0
- package/skills/deployment/docker/Dockerfile.template +39 -0
- package/skills/dispatching-parallel-agents/SKILL.md +180 -0
- package/skills/documentation-generation/SKILL.md +8 -0
- package/skills/documentation-generation/templates/README.template.md +60 -0
- package/skills/error-handling/SKILL.md +267 -0
- package/skills/executing-plans/SKILL.md +76 -0
- package/skills/finishing-a-development-branch/SKILL.md +200 -0
- package/skills/frontend-design/frontend-design/SKILL.md +42 -0
- package/skills/integration-testing/SKILL.md +13 -0
- package/skills/integration-testing/examples/contract-test.py +317 -0
- package/skills/integration-testing/examples/e2e-test.js +147 -0
- package/skills/integration-testing/examples/test-isolation.md +94 -0
- package/skills/logging-monitoring/SKILL.md +66 -0
- package/skills/mobile-development/SKILL.md +11 -0
- package/skills/mobile-development/responsive/responsive.css +80 -0
- package/skills/performance-optimization/SKILL.md +9 -0
- package/skills/performance-optimization/profiling/profile.template.js +21 -0
- package/skills/receiving-code-review/SKILL.md +209 -0
- package/skills/refactoring/SKILL.md +11 -0
- package/skills/refactoring/code-smells/common-smells.md +115 -0
- package/skills/requesting-code-review/SKILL.md +105 -0
- package/skills/requesting-code-review/code-reviewer.md +146 -0
- package/skills/root-cause-tracing/SKILL.md +174 -0
- package/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/skills/security-review/SKILL.md +11 -0
- package/skills/security-review/checklists/owasp-checklist.md +31 -0
- package/skills/sharing-skills/SKILL.md +194 -0
- package/skills/subagent-driven-development/SKILL.md +240 -0
- package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
- package/skills/subagent-driven-development/implementer-prompt.md +78 -0
- package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
- package/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/skills/systematic-debugging/SKILL.md +295 -0
- package/skills/systematic-debugging/test-academic.md +14 -0
- package/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/skills/test-driven-development/SKILL.md +364 -0
- package/skills/testing-anti-patterns/SKILL.md +302 -0
- package/skills/testing-skills-with-subagents/SKILL.md +387 -0
- package/skills/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +189 -0
- package/skills/ui-ux-review/SKILL.md +13 -0
- package/skills/ui-ux-review/checklists/ux-heuristics.md +61 -0
- package/skills/using-git-worktrees/SKILL.md +213 -0
- package/skills/using-superpowers/SKILL.md +101 -0
- package/skills/verification-before-completion/SKILL.md +139 -0
- package/skills/writing-plans/SKILL.md +116 -0
- package/skills/writing-skills/SKILL.md +622 -0
- package/skills/writing-skills/anthropic-best-practices.md +1150 -0
- package/skills/writing-skills/graphviz-conventions.dot +172 -0
- package/skills/writing-skills/persuasion-principles.md +187 -0
- package/update.sh +36 -0
- package/utils/check-superpowers.sh +114 -0
- package/utils/claude-branding.md +166 -0
- package/utils/config.js +185 -0
- package/utils/custom-claude-config.sh +89 -0
- package/utils/custom-claude-hooks.md +129 -0
- package/utils/custom-claude-lib.js +222 -0
- package/utils/customize-claude-ui.sh +162 -0
- package/utils/fix-claude-integration.sh +133 -0
- package/utils/help.js +125 -0
- package/utils/install-curl.ps1 +135 -0
- package/utils/install-curl.sh +525 -0
- package/utils/install-superpowers.js +411 -0
- package/utils/install.js +298 -0
- package/utils/install.sh +182 -0
- package/utils/postinstall.js +63 -0
- package/utils/rename-claude.sh +96 -0
- package/utils/uninstall-superpowers.js +273 -0
- package/utils/uninstall.ps1 +136 -0
- package/utils/uninstall.sh +163 -0
- 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
|
+
}
|