claude-all-config 3.8.0 โ 3.8.2
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/README.md +273 -209
- package/VERSION +1 -1
- package/kiro-all +38 -0
- package/package.json +4 -4
- package/postinstall.js +88 -1
- package/AGENT.md +0 -121
- package/LICENSE.md +0 -70
package/README.md
CHANGED
|
@@ -1,288 +1,352 @@
|
|
|
1
1
|
# ๐ค ClaudeAll
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
|
|
5
|
-
The most comprehensive AI agent configuration system with features **beyond skills.sh**:
|
|
6
|
-
- โ
Quality scoring (0-100)
|
|
7
|
-
- โ
Skill scaffolding generator
|
|
8
|
-
- โ
Built-in testing framework
|
|
9
|
-
- โ
Dependency management
|
|
10
|
-
- โ
Hooks system (pre/post install)
|
|
11
|
-
- โ
Multi-agent support (20+ agents)
|
|
12
|
-
- โ
Offline-first design
|
|
3
|
+
> **One install, four AI coding agents.**
|
|
4
|
+
> Configures Claude Code ยท Gemini CLI ยท OpenAI Codex ยท Kiro CLI โ same agents, same skills, same MCP servers, same `.env` everywhere.
|
|
13
5
|
|
|
14
6
|
[](https://www.npmjs.com/package/claude-all-config)
|
|
15
7
|
[](https://github.com/zesbe/ClaudeAll/blob/main/LICENSE)
|
|
8
|
+
[](#agents)
|
|
9
|
+
[](#skills)
|
|
10
|
+
[](#mcp-servers)
|
|
11
|
+
[](#smart-hooks)
|
|
16
12
|
|
|
17
13
|
---
|
|
18
14
|
|
|
19
|
-
##
|
|
15
|
+
## โจ What you get
|
|
16
|
+
|
|
17
|
+
| | Count | Notes |
|
|
18
|
+
|---|---|---|
|
|
19
|
+
| **Agents** | 22 | 14 originals + 8 power agents (debugger, architect, incident-commander, db-doctor, refactor-master, release-manager, cost-watchdog, learning-loop) |
|
|
20
|
+
| **Skills** | 82 | 67 in-house + 15 curated from `alirezarezvani/claude-skills` (MIT) |
|
|
21
|
+
| **MCP servers** | 11 | context7, exa, sequential-thinking, memory, filesystem, fetch, zread, vision, web-search, minimax, telegram |
|
|
22
|
+
| **Smart hooks** | 8 | intent-classifier, secret-scanner, blast-radius-warner, auto-test-runner, auto-format, commit-suggester, lessons-extractor, result-summarizer |
|
|
23
|
+
| **Slash commands** | 8 | `/brainstorm`, `/write-plan`, `/execute-plan`, `/clean`, `/commit-openagents`, `/indexes`, `/worktrees`, `/writing-plans` |
|
|
24
|
+
| **Platforms supported** | 4 | Claude Code, Gemini CLI, OpenAI Codex, Kiro CLI |
|
|
25
|
+
|
|
26
|
+
---
|
|
20
27
|
|
|
21
|
-
|
|
22
|
-
> ```bash
|
|
23
|
-
> # macOS / Linux / WSL
|
|
24
|
-
> curl -fsSL https://claude.ai/install.sh | bash
|
|
25
|
-
>
|
|
26
|
-
> # Windows (PowerShell)
|
|
27
|
-
> irm https://claude.ai/install.ps1 | iex
|
|
28
|
-
> ```
|
|
28
|
+
## โก Quick install
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
### 1. Install your AI CLI of choice (any/all of these)
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
#
|
|
33
|
+
# Claude Code (recommended โ Anthropic's native installer)
|
|
34
|
+
curl -fsSL https://claude.ai/install.sh | bash
|
|
35
|
+
|
|
36
|
+
# Gemini CLI
|
|
37
|
+
npm install -g @google/gemini-cli
|
|
38
|
+
|
|
39
|
+
# OpenAI Codex
|
|
40
|
+
npm install -g @openai/codex
|
|
41
|
+
|
|
42
|
+
# Kiro CLI
|
|
43
|
+
# See https://kiro.dev for install instructions
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### 2. Install ClaudeAll (configures every CLI you have)
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# npm โ works everywhere (Linux, macOS, WSL, Termux, Windows)
|
|
34
50
|
npm install -g claude-all-config
|
|
35
51
|
|
|
36
|
-
# curl one-liner (
|
|
52
|
+
# OR curl one-liner (Linux/macOS/WSL):
|
|
37
53
|
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash
|
|
38
54
|
```
|
|
39
55
|
|
|
40
|
-
|
|
41
|
-
|
|
56
|
+
ClaudeAll detects which CLIs you have installed and configures each one
|
|
57
|
+
automatically. Run again whenever you add a new CLI.
|
|
58
|
+
|
|
59
|
+
### 3. Make `~/.local/bin` discoverable
|
|
42
60
|
|
|
43
61
|
```bash
|
|
44
|
-
export PATH="$HOME/.local/bin:$PATH"
|
|
62
|
+
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
|
|
63
|
+
source ~/.bashrc
|
|
45
64
|
```
|
|
46
65
|
|
|
47
|
-
|
|
66
|
+
### 4. (Optional) Customize secrets
|
|
67
|
+
|
|
68
|
+
The package ships with sensible default API keys so MCP servers work
|
|
69
|
+
out of the box. To use your own keys, edit:
|
|
70
|
+
|
|
48
71
|
```bash
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
72
|
+
~/.claude/.env # Claude Code
|
|
73
|
+
~/.gemini/.env # Gemini
|
|
74
|
+
~/.codex/.env # Codex
|
|
75
|
+
~/.kiro/.env # Kiro
|
|
52
76
|
```
|
|
53
77
|
|
|
54
|
-
|
|
78
|
+
The wrappers (`claude-all`, `gemini-all`, `codex-all`, `kiro-all`) source
|
|
79
|
+
these `.env` files automatically. The `claude`, `gemini`, and `codex` shims in
|
|
80
|
+
`~/.local/bin/` do the same when you call them by their plain name.
|
|
55
81
|
|
|
56
|
-
|
|
82
|
+
---
|
|
57
83
|
|
|
58
|
-
|
|
84
|
+
## ๐ Daily use
|
|
59
85
|
|
|
60
86
|
```bash
|
|
61
|
-
#
|
|
62
|
-
claude
|
|
87
|
+
# Claude
|
|
88
|
+
claude # plain native binary
|
|
89
|
+
claude-all # interactive launcher with model menus
|
|
63
90
|
|
|
64
|
-
#
|
|
65
|
-
|
|
91
|
+
# Gemini (plain `gemini` is shimmed โ auto-YOLO + .env loaded)
|
|
92
|
+
gemini
|
|
93
|
+
gemini --no-yolo # opt out of YOLO for one run
|
|
66
94
|
|
|
67
|
-
#
|
|
68
|
-
|
|
95
|
+
# Codex (plain `codex` shim auto-loads .env)
|
|
96
|
+
codex
|
|
97
|
+
codex-all # explicit launcher
|
|
69
98
|
|
|
70
|
-
#
|
|
71
|
-
|
|
99
|
+
# Kiro
|
|
100
|
+
kiro-all # launcher with .env loaded
|
|
101
|
+
```
|
|
72
102
|
|
|
73
|
-
|
|
74
|
-
|
|
103
|
+
The `claude-all` launcher gives you an interactive menu of model providers:
|
|
104
|
+
Anthropic Claude, OpenAI, Gemini, ZhipuAI/GLM (5 / 5.1), Letta (Opus 4.7), DeepSeek,
|
|
105
|
+
MiniMax, Groq, Qwen, OpenRouter, AgentRouter, and more.
|
|
75
106
|
|
|
76
|
-
|
|
77
|
-
claude-all-skills stats
|
|
78
|
-
```
|
|
107
|
+
---
|
|
79
108
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
Every skill gets a quality score (0-100) based on:
|
|
83
|
-
- โ
Has SKILL.md (+25)
|
|
84
|
-
- โ
Has frontmatter (+10)
|
|
85
|
-
- โ
Has description (+10)
|
|
86
|
-
- โ
Has examples (+15)
|
|
87
|
-
- โ
Has code blocks (+10)
|
|
88
|
-
- โ
Has tests (+15)
|
|
89
|
-
- โ
Has skill.json (+10)
|
|
90
|
-
- โ
Has creation log (+5)
|
|
91
|
-
|
|
92
|
-
### ๐ช Hooks System
|
|
93
|
-
|
|
94
|
-
Define lifecycle hooks in `skill.json`:
|
|
95
|
-
```json
|
|
96
|
-
{
|
|
97
|
-
"hooks": {
|
|
98
|
-
"preInstall": "setup.sh",
|
|
99
|
-
"postInstall": "npm install",
|
|
100
|
-
"preUninstall": "cleanup.sh"
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
```
|
|
109
|
+
## ๐ง Agents
|
|
104
110
|
|
|
105
|
-
|
|
111
|
+
Use `Task` tool with these 22 agent types (file: `~/.claude/agents/<name>.md`):
|
|
106
112
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
113
|
+
**Original (14)**
|
|
114
|
+
`proactive-mode` ยท `code-generator` ยท `code-reviewer` ยท `security-auditor` ยท
|
|
115
|
+
`test-generator` ยท `doc-generator` ยท `api-tester` ยท `performance-analyzer` ยท
|
|
116
|
+
`accessibility-reviewer` ยท `component-generator` ยท `migration-generator` ยท
|
|
117
|
+
`readme-generator` ยท `terraform-generator` ยท `ai-prompt-optimizer`
|
|
118
|
+
|
|
119
|
+
**v3.6 power agents (8)**
|
|
120
|
+
- `debugger` โ systematic root-cause investigation
|
|
121
|
+
- `architect` โ ADR-driven system design
|
|
122
|
+
- `incident-commander` โ SEV triage + post-mortem
|
|
123
|
+
- `db-doctor` โ query / schema specialist
|
|
124
|
+
- `refactor-master` โ tiered refactor with safety nets
|
|
125
|
+
- `release-manager` โ semver + changelog + publish automation
|
|
126
|
+
- `cost-watchdog` โ cloud + AI cost monitoring
|
|
127
|
+
- `learning-loop` โ persists lessons to memory MCP, recalls them next session
|
|
116
128
|
|
|
117
129
|
---
|
|
118
130
|
|
|
119
|
-
##
|
|
120
|
-
|
|
121
|
-
| Agent | Support |
|
|
122
|
-
|-------|---------|
|
|
123
|
-
| Claude Code | โ
Full |
|
|
124
|
-
| Cursor | โ
Full |
|
|
125
|
-
| GitHub Copilot | โ
Full |
|
|
126
|
-
| Gemini CLI | โ
Full |
|
|
127
|
-
| Windsurf | โ
Full |
|
|
128
|
-
| OpenCode | โ
Full |
|
|
129
|
-
| Roo | โ
Full |
|
|
130
|
-
| Kilo | โ
Full |
|
|
131
|
-
| Goose | โ
Full |
|
|
132
|
-
| Codex | โ
Full |
|
|
133
|
-
| Trae | โ
Full |
|
|
134
|
-
| + 10 more | โ
|
|
|
131
|
+
## โก Skills
|
|
135
132
|
|
|
136
|
-
|
|
133
|
+
82 skills under `~/.claude/skills/<name>/SKILL.md`. Highlights:
|
|
134
|
+
|
|
135
|
+
**Engineering**
|
|
136
|
+
`api-design-authority` ยท `architecture-decisions` ยท `code-review-authority` ยท
|
|
137
|
+
`database-design` ยท `tech-stack-authority` ยท `tech-debt-hunter` ยท
|
|
138
|
+
`backend-dev` ยท `frontend-design` ยท `mobile-development`
|
|
139
|
+
|
|
140
|
+
**Quality & testing**
|
|
141
|
+
`systematic-debugging` ยท `root-cause-tracing` ยท `test-driven-development` ยท
|
|
142
|
+
`integration-testing` ยท `verification-before-completion` ยท
|
|
143
|
+
`condition-based-waiting` ยท `defense-in-depth`
|
|
144
|
+
|
|
145
|
+
**Reliability & ops**
|
|
146
|
+
`crisis-commander` ยท `chaos-engineering` ยท `incident-response` ยท
|
|
147
|
+
`observability-designer` ยท `kubernetes-operator` ยท `terraform-patterns` ยท
|
|
148
|
+
`stress-test` ยท `auto-backup` ยท `multi-vps`
|
|
137
149
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
| doc-generator | Generate documentation |
|
|
150
|
-
| api-tester | Test API endpoints |
|
|
151
|
-
| performance-analyzer | Analyze & optimize performance |
|
|
152
|
-
| accessibility-reviewer | Check accessibility compliance |
|
|
153
|
-
| component-generator | Generate UI components |
|
|
154
|
-
| migration-generator | Generate DB migrations |
|
|
155
|
-
| readme-generator | Generate README files |
|
|
156
|
-
| terraform-generator | Generate Terraform/IaC configs |
|
|
157
|
-
| ai-prompt-optimizer | Optimize AI prompts |
|
|
158
|
-
|
|
159
|
-
### โก Skills (60+)
|
|
160
|
-
|
|
161
|
-
| Category | Skills |
|
|
162
|
-
|----------|--------|
|
|
163
|
-
| **Development** | api-development, database-development, frontend-design, mobile-development, backend-dev |
|
|
164
|
-
| **Quality** | code-quality, test-driven-development, integration-testing, testing-anti-patterns |
|
|
165
|
-
| **Planning** | brainstorming, writing-plans, executing-plans |
|
|
166
|
-
| **Review** | requesting-code-review, receiving-code-review, security-review, ui-ux-review |
|
|
167
|
-
| **Debug** | systematic-debugging, root-cause-tracing, error-handling |
|
|
168
|
-
| **Deploy** | deployment, defense-in-depth |
|
|
169
|
-
| **Advanced** | subagent-driven-development, dispatching-parallel-agents, condition-based-waiting |
|
|
170
|
-
|
|
171
|
-
### ๐ Commands (3)
|
|
172
|
-
|
|
173
|
-
| Command | Description |
|
|
174
|
-
|---------|-------------|
|
|
175
|
-
| `/brainstorm` | Start a brainstorming session |
|
|
176
|
-
| `/write-plan` | Write a development plan |
|
|
177
|
-
| `/execute-plan` | Execute an existing plan |
|
|
178
|
-
|
|
179
|
-
### ๐ง MCP Servers (6)
|
|
180
|
-
|
|
181
|
-
| Server | Description |
|
|
182
|
-
|--------|-------------|
|
|
183
|
-
| **context7** | Documentation & library context |
|
|
184
|
-
| **exa** | Web search & crawling |
|
|
185
|
-
| **sequential-thinking** | Step-by-step reasoning |
|
|
186
|
-
| **memory** | Knowledge graph persistence |
|
|
187
|
-
| **filesystem** | File system access |
|
|
188
|
-
| **fetch** | HTTP requests |
|
|
150
|
+
**AI / LLM**
|
|
151
|
+
`rag-architect` ยท `llm-cost-optimizer` ยท `prompt-governance` ยท
|
|
152
|
+
`agent-workflow-designer` ยท `ai-prompt-optimizer`
|
|
153
|
+
|
|
154
|
+
**v3.6 orchestration skills**
|
|
155
|
+
- `consensus-voting` โ multi-agent voting on high-stakes decisions
|
|
156
|
+
- `auto-recall-memory` โ query memory MCP before solving
|
|
157
|
+
- `self-validation-loop` โ auto-validate generated code
|
|
158
|
+
- `cost-aware-execution` โ estimate token cost before heavy ops
|
|
159
|
+
|
|
160
|
+
`claude-all-skills list` for the full inventory with quality scores.
|
|
189
161
|
|
|
190
162
|
---
|
|
191
163
|
|
|
192
|
-
##
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
|
201
|
-
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
|
|
|
164
|
+
## ๐ MCP servers
|
|
165
|
+
|
|
166
|
+
All 11 servers are auto-configured in:
|
|
167
|
+
- `~/.mcp.json` (Claude)
|
|
168
|
+
- `~/.gemini/mcp.json` (Gemini)
|
|
169
|
+
- `~/.codex/config.toml` (Codex, TOML format with `approval_policy = "never"`)
|
|
170
|
+
- `~/.kiro/settings/mcp.json` (Kiro)
|
|
171
|
+
|
|
172
|
+
| Server | Purpose | Env var |
|
|
173
|
+
|---|---|---|
|
|
174
|
+
| context7 | Library docs lookup | `CONTEXT7_API_KEY` |
|
|
175
|
+
| exa | Web search & crawling | `EXA_API_KEY` |
|
|
176
|
+
| sequential-thinking | Structured step-by-step reasoning | โ |
|
|
177
|
+
| memory | Knowledge graph persistence | โ |
|
|
178
|
+
| filesystem | File system access (scoped to `$HOME`) | โ |
|
|
179
|
+
| fetch | HTTP fetch | โ |
|
|
180
|
+
| zread | Z.AI document reader | `Z_AI_API_KEY` |
|
|
181
|
+
| vision | Z.AI vision/multimodal | `Z_AI_API_KEY` |
|
|
182
|
+
| web-search | Z.AI premium web search | `Z_AI_API_KEY` |
|
|
183
|
+
| minimax | MiniMax voice/audio | `MINIMAX_API_KEY` |
|
|
184
|
+
| telegram | Telegram bot + notifications | `TELEGRAM_*` |
|
|
185
|
+
|
|
186
|
+
`${HOME}` in args is expanded at install time.
|
|
206
187
|
|
|
207
188
|
---
|
|
208
189
|
|
|
209
|
-
##
|
|
190
|
+
## ๐ช Smart hooks
|
|
210
191
|
|
|
211
|
-
|
|
192
|
+
A single dispatcher `hooks/smart-hooks.sh` powers eight hook actions wired
|
|
193
|
+
through `hooks/hooks.json`:
|
|
212
194
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
195
|
+
| Hook | Trigger | What it does |
|
|
196
|
+
|---|---|---|
|
|
197
|
+
| `intent-classifier` | UserPromptSubmit | Suggests the right specialist agent based on prompt keywords |
|
|
198
|
+
| `secret-scanner` | PreToolUse | Blocks tool calls leaking PATs, JWTs, AWS keys, private keys |
|
|
199
|
+
| `blast-radius-warner` | PreToolUse (Bash) | Warns on destructive commands (`rm -rf /`, force-push, `DROP TABLE`, โฆ) |
|
|
200
|
+
| `auto-test-runner` | PostToolUse (Edit/Write) | Suggests the right test command for the file's language |
|
|
201
|
+
| `auto-format` | PostToolUse (Edit/Write) | Suggests prettier/black/gofmt/etc. |
|
|
202
|
+
| `commit-suggester` | Stop | Notes uncommitted changes |
|
|
203
|
+
| `lessons-extractor` | Stop | Prompts the `learning-loop` agent to persist insights |
|
|
204
|
+
| `result-summarizer` | SubagentStop | Reminds the model to condense subagent verbosity |
|
|
223
205
|
|
|
224
206
|
---
|
|
225
207
|
|
|
226
|
-
##
|
|
208
|
+
## ๐ฆ Layout after install
|
|
227
209
|
|
|
228
210
|
```
|
|
229
|
-
|
|
230
|
-
โโโ
|
|
231
|
-
โโโ
|
|
232
|
-
โโโ
|
|
233
|
-
โโโ
|
|
234
|
-
โโโ
|
|
235
|
-
|
|
236
|
-
โโโ
|
|
237
|
-
|
|
238
|
-
โโโ
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
211
|
+
~/.local/bin/
|
|
212
|
+
โโโ claude โ Claude Code native binary
|
|
213
|
+
โโโ claude-all โ interactive launcher (model menu, MCP keys)
|
|
214
|
+
โโโ claude-all-skills โ skills CLI
|
|
215
|
+
โโโ claude-all-mcp โ MCP installer
|
|
216
|
+
โโโ claude-all-update โ self-updater
|
|
217
|
+
โโโ gemini โ shim: auto --yolo + .env loaded
|
|
218
|
+
โโโ gemini-all โ explicit Gemini launcher
|
|
219
|
+
โโโ codex โ shim: auto .env loaded
|
|
220
|
+
โโโ codex-all โ explicit Codex launcher
|
|
221
|
+
โโโ kiro-all โ Kiro launcher
|
|
222
|
+
|
|
223
|
+
~/.claude/
|
|
224
|
+
โโโ agents/ (22 agents)
|
|
225
|
+
โโโ skills/ (82 skills)
|
|
226
|
+
โโโ commands/ (8 slash commands)
|
|
227
|
+
โโโ hooks/ (smart-hooks.sh + hooks.json)
|
|
228
|
+
โโโ plugins/
|
|
229
|
+
โโโ context/
|
|
230
|
+
โโโ CLAUDE.md
|
|
231
|
+
โโโ settings.json
|
|
232
|
+
โโโ .env
|
|
233
|
+
|
|
234
|
+
~/.gemini/superpowers/ (mirror of ~/.claude content)
|
|
235
|
+
~/.gemini/{GEMINI.md, mcp.json, settings.json, .env}
|
|
236
|
+
|
|
237
|
+
~/.codex/
|
|
238
|
+
โโโ agents/ skills/ commands/ hooks/ lib/
|
|
239
|
+
โโโ AGENTS.md (synced from CLAUDE.md)
|
|
240
|
+
โโโ config.toml (auto-translated from mcp.json)
|
|
241
|
+
โโโ .env
|
|
242
|
+
|
|
243
|
+
~/.kiro/
|
|
244
|
+
โโโ skills/ commands/ hooks/ lib/ prompts/
|
|
245
|
+
โโโ AGENTS.md (synced from CLAUDE.md)
|
|
246
|
+
โโโ settings/mcp.json
|
|
247
|
+
โโโ .env
|
|
242
248
|
```
|
|
243
249
|
|
|
244
250
|
---
|
|
245
251
|
|
|
246
|
-
##
|
|
252
|
+
## ๐ Security model
|
|
247
253
|
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
254
|
+
**Out of the box:** the package ships default API keys for context7, exa,
|
|
255
|
+
Z.AI, MiniMax, and a Telegram bot (`@mcpcli_bot`) so MCP servers work
|
|
256
|
+
immediately. These are public on npm โ do not rely on them for production
|
|
257
|
+
work; install your own.
|
|
258
|
+
|
|
259
|
+
**To use your own keys:** edit any of the `.env` files listed in step 4
|
|
260
|
+
above. Postinstall *merges* on subsequent installs โ it fills empty values
|
|
261
|
+
from defaults but never overwrites a value you've customized.
|
|
262
|
+
|
|
263
|
+
**As root (Docker, Termux proot, CI):** the wrappers automatically set
|
|
264
|
+
`IS_SANDBOX=1` and use `--dangerously-skip-permissions` so Claude Code
|
|
265
|
+
recognizes the environment as an intended sandbox and bypasses its
|
|
266
|
+
root-protection check.
|
|
267
|
+
|
|
268
|
+
**`secret-scanner` hook** blocks tool calls that contain anything that
|
|
269
|
+
looks like a token (PAT, JWT, AWS key, private key block).
|
|
251
270
|
|
|
252
271
|
---
|
|
253
272
|
|
|
254
|
-
##
|
|
273
|
+
## ๐ Environment overrides
|
|
255
274
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
275
|
+
| Variable | Effect |
|
|
276
|
+
|---|---|
|
|
277
|
+
| `GEMINI_NO_YOLO=1` | Disable auto-`--yolo` for the gemini shim |
|
|
278
|
+
| `GEMINI_BIN=/path/to/gemini` | Force shim to use a specific gemini |
|
|
279
|
+
| `CODEX_BIN=/path/to/codex` | Force shim to use a specific codex |
|
|
280
|
+
| `KIRO_BIN=/path/to/kiro-cli` | Force kiro-all to use a specific kiro |
|
|
260
281
|
|
|
261
|
-
|
|
262
|
-
claude-all-skills create my-skill
|
|
282
|
+
For the curl installer specifically (`install.sh` at repo root):
|
|
263
283
|
|
|
264
|
-
|
|
265
|
-
|
|
284
|
+
| Variable | Effect |
|
|
285
|
+
|---|---|
|
|
286
|
+
| `CLAUDE_INSTALLER_FORCE_NPM=1` | Force npm path even on supported native platforms |
|
|
287
|
+
| `CLAUDE_INSTALLER_VERSION=X.Y.Z` | Pin a specific npm version |
|
|
288
|
+
| `CLAUDE_INSTALLER_DRY_RUN=1` | Show what would happen, do not execute |
|
|
289
|
+
|
|
290
|
+
---
|
|
291
|
+
|
|
292
|
+
## ๐ง Termux / Android
|
|
293
|
+
|
|
294
|
+
Anthropic's native installer doesn't ship an Android arm64 binary, so on
|
|
295
|
+
Termux we transparently fall back to npm:
|
|
296
|
+
|
|
297
|
+
```bash
|
|
298
|
+
pkg install -y nodejs-lts git
|
|
299
|
+
npm config set prefix "$HOME/.local"
|
|
300
|
+
npm install -g @anthropic-ai/claude-code
|
|
301
|
+
npm install -g claude-all-config
|
|
266
302
|
```
|
|
267
303
|
|
|
268
|
-
|
|
304
|
+
Inside `proot-distro` (where you run as root), the wrappers detect UID 0
|
|
305
|
+
and set `IS_SANDBOX=1` so all the autonomous behavior keeps working.
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## ๐ Update
|
|
310
|
+
|
|
269
311
|
```bash
|
|
270
|
-
|
|
271
|
-
claude
|
|
312
|
+
npm install -g claude-all-config@latest
|
|
272
313
|
```
|
|
273
314
|
|
|
274
|
-
|
|
315
|
+
Re-running install is safe โ files are merged, ownership is restored if you
|
|
316
|
+
ran under sudo, and your customized `.env` values are preserved.
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## ๐งน Uninstall
|
|
321
|
+
|
|
275
322
|
```bash
|
|
276
|
-
|
|
277
|
-
|
|
323
|
+
# Native Claude Code binary
|
|
324
|
+
rm -f ~/.local/bin/claude
|
|
325
|
+
rm -rf ~/.local/share/claude
|
|
326
|
+
|
|
327
|
+
# ClaudeAll itself
|
|
328
|
+
npm uninstall -g claude-all-config
|
|
329
|
+
|
|
330
|
+
# Configuration (this also removes auth)
|
|
331
|
+
rm -rf ~/.claude ~/.gemini ~/.codex ~/.kiro
|
|
332
|
+
rm -f ~/.claude.json ~/.mcp.json
|
|
278
333
|
```
|
|
279
334
|
|
|
280
335
|
---
|
|
281
336
|
|
|
282
|
-
##
|
|
337
|
+
## ๐ Credits
|
|
283
338
|
|
|
284
|
-
|
|
339
|
+
15 of the 82 skills (`rag-architect`, `llm-cost-optimizer`,
|
|
340
|
+
`prompt-governance`, `chaos-engineering`, `observability-designer`,
|
|
341
|
+
`threat-detection`, `kubernetes-operator`, `terraform-patterns`,
|
|
342
|
+
`playwright-pro`, `incident-response`, `data-quality-auditor`,
|
|
343
|
+
`migration-architect`, `stress-test`, `agent-workflow-designer`,
|
|
344
|
+
`api-design-reviewer`) are adopted from
|
|
345
|
+
[`alirezarezvani/claude-skills`](https://github.com/alirezarezvani/claude-skills)
|
|
346
|
+
under MIT. See [`skills/ATTRIBUTION.md`](./skills/ATTRIBUTION.md).
|
|
285
347
|
|
|
286
348
|
---
|
|
287
349
|
|
|
288
|
-
|
|
350
|
+
## ๐ License
|
|
351
|
+
|
|
352
|
+
[MIT](LICENSE)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.8.
|
|
1
|
+
3.8.2
|
package/kiro-all
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
#
|
|
3
|
+
# kiro-all โ Kiro CLI launcher with ClaudeAll secrets loaded.
|
|
4
|
+
#
|
|
5
|
+
# Sources ~/.kiro/.env (and ~/.claude/.env as fallback), then forwards to the
|
|
6
|
+
# real kiro-cli (or `kiro` if your install uses that name).
|
|
7
|
+
|
|
8
|
+
set -u
|
|
9
|
+
|
|
10
|
+
load_env() {
|
|
11
|
+
local f="$1"
|
|
12
|
+
if [ -f "$f" ]; then
|
|
13
|
+
set -a
|
|
14
|
+
# shellcheck disable=SC1090
|
|
15
|
+
. "$f" 2>/dev/null || true
|
|
16
|
+
set +a
|
|
17
|
+
fi
|
|
18
|
+
}
|
|
19
|
+
load_env "$HOME/.claude/.env"
|
|
20
|
+
load_env "$HOME/.kiro/.env"
|
|
21
|
+
|
|
22
|
+
# Locate kiro binary (prefer kiro-cli; fall back to kiro)
|
|
23
|
+
KIRO_CMD=""
|
|
24
|
+
for cand in "${KIRO_BIN:-}" kiro-cli kiro; do
|
|
25
|
+
[ -z "$cand" ] && continue
|
|
26
|
+
if command -v "$cand" &>/dev/null; then
|
|
27
|
+
KIRO_CMD="$cand"
|
|
28
|
+
break
|
|
29
|
+
fi
|
|
30
|
+
done
|
|
31
|
+
|
|
32
|
+
if [ -z "$KIRO_CMD" ]; then
|
|
33
|
+
echo "โ kiro-cli not found in PATH." >&2
|
|
34
|
+
echo " See https://kiro.dev for install instructions." >&2
|
|
35
|
+
exit 127
|
|
36
|
+
fi
|
|
37
|
+
|
|
38
|
+
exec "$KIRO_CMD" "$@"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-all-config",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.2",
|
|
4
4
|
"description": "๐ฆพ MONSTER ENGINEER v2 - Ultimate AI CLI with 63 Skills, 12 Superpowers, 14 Agents. Multi-Agent Orchestration, Cost-Aware, Security Scorecard, Parallel-First.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"claude-all-update": "./update.sh",
|
|
10
10
|
"claude-all-mcp": "./bin/mcp-install.js",
|
|
11
11
|
"gemini-all": "./gemini-all",
|
|
12
|
-
"codex-all": "./codex-all"
|
|
12
|
+
"codex-all": "./codex-all",
|
|
13
|
+
"kiro-all": "./kiro-all"
|
|
13
14
|
},
|
|
14
15
|
"scripts": {
|
|
15
16
|
"postinstall": "node postinstall.js || bash install.sh",
|
|
@@ -85,13 +86,13 @@
|
|
|
85
86
|
"mcp.json",
|
|
86
87
|
"claude-config.json",
|
|
87
88
|
"settings.local.json",
|
|
88
|
-
"AGENT.md",
|
|
89
89
|
"CLAUDE.md",
|
|
90
90
|
"claude-all",
|
|
91
91
|
"gemini-all",
|
|
92
92
|
"gemini",
|
|
93
93
|
"codex-all",
|
|
94
94
|
"codex",
|
|
95
|
+
"kiro-all",
|
|
95
96
|
"install.sh",
|
|
96
97
|
"install-termux.sh",
|
|
97
98
|
"install-universal.sh",
|
|
@@ -99,7 +100,6 @@
|
|
|
99
100
|
"postinstall.js",
|
|
100
101
|
"README.md",
|
|
101
102
|
"LICENSE",
|
|
102
|
-
"LICENSE.md",
|
|
103
103
|
"VERSION",
|
|
104
104
|
".env.example"
|
|
105
105
|
],
|
package/postinstall.js
CHANGED
|
@@ -148,13 +148,15 @@ function mergeEnvFile(srcPath, destPath) {
|
|
|
148
148
|
const hasClaude = commandExists('claude');
|
|
149
149
|
const hasGemini = commandExists('gemini');
|
|
150
150
|
const hasCodex = commandExists('codex');
|
|
151
|
+
const hasKiro = commandExists('kiro') || commandExists('kiro-cli');
|
|
151
152
|
|
|
152
153
|
console.log('๐ค ClaudeAll - Installing configurations...\n');
|
|
153
154
|
|
|
154
155
|
if (hasClaude) console.log('โ
Claude CLI detected');
|
|
155
156
|
if (hasGemini) console.log('โ
Gemini CLI detected');
|
|
156
157
|
if (hasCodex) console.log('โ
Codex CLI detected');
|
|
157
|
-
if (
|
|
158
|
+
if (hasKiro) console.log('โ
Kiro CLI detected');
|
|
159
|
+
if (!hasClaude && !hasGemini && !hasCodex && !hasKiro) {
|
|
158
160
|
console.log('โ ๏ธ No CLI detected, installing configs anyway...');
|
|
159
161
|
}
|
|
160
162
|
console.log('');
|
|
@@ -546,6 +548,84 @@ function installCodex() {
|
|
|
546
548
|
}
|
|
547
549
|
}
|
|
548
550
|
|
|
551
|
+
// Install to Kiro (~/.kiro/) โ Kiro CLI uses skills in SKILL.md format
|
|
552
|
+
// (compatible with Claude), AGENTS.md for global instructions, and stores MCP
|
|
553
|
+
// config under ~/.kiro/settings/mcp.json. Agents in Kiro use a JSON schema
|
|
554
|
+
// that's auto-generated by Kiro itself, so we don't ship those.
|
|
555
|
+
function installKiro() {
|
|
556
|
+
const KIRO_DIR = path.join(HOME, '.kiro');
|
|
557
|
+
console.log('๐ฆ Installing to Kiro (~/.kiro/)...');
|
|
558
|
+
|
|
559
|
+
const dirs = ['skills', 'commands', 'hooks', 'lib', 'settings', 'prompts'];
|
|
560
|
+
dirs.forEach(dir => {
|
|
561
|
+
const targetDir = path.join(KIRO_DIR, dir);
|
|
562
|
+
try {
|
|
563
|
+
if (!fs.existsSync(targetDir)) fs.mkdirSync(targetDir, { recursive: true });
|
|
564
|
+
} catch {}
|
|
565
|
+
});
|
|
566
|
+
|
|
567
|
+
// Skills are SKILL.md format โ fully compatible with Kiro
|
|
568
|
+
const skillCount = copyDir(path.join(PKG_DIR, 'skills'), path.join(KIRO_DIR, 'skills'));
|
|
569
|
+
console.log(` โก ${skillCount} skill files`);
|
|
570
|
+
|
|
571
|
+
// Commands & hooks (in case Kiro adopts them)
|
|
572
|
+
const cmdCount = copyDir(path.join(PKG_DIR, 'commands'), path.join(KIRO_DIR, 'commands'));
|
|
573
|
+
console.log(` ๐ ${cmdCount} commands`);
|
|
574
|
+
|
|
575
|
+
const hookCount = copyDir(path.join(PKG_DIR, 'hooks'), path.join(KIRO_DIR, 'hooks'));
|
|
576
|
+
console.log(` ๐ ${hookCount} hooks`);
|
|
577
|
+
|
|
578
|
+
if (fs.existsSync(path.join(PKG_DIR, 'lib'))) {
|
|
579
|
+
copyDir(path.join(PKG_DIR, 'lib'), path.join(KIRO_DIR, 'lib'));
|
|
580
|
+
console.log(` ๐ lib`);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
// AGENTS.md โ synced from CLAUDE.md (single source of truth)
|
|
584
|
+
const claudeMdInPkg = path.join(PKG_DIR, 'CLAUDE.md');
|
|
585
|
+
const agentsMdDest = path.join(KIRO_DIR, 'AGENTS.md');
|
|
586
|
+
if (fs.existsSync(claudeMdInPkg)) {
|
|
587
|
+
try {
|
|
588
|
+
let content = fs.readFileSync(claudeMdInPkg, 'utf8');
|
|
589
|
+
content = content
|
|
590
|
+
.replace(/# ClaudeAll Global Instructions/, '# Kiro Agent Instructions (ClaudeAll Global Instructions)')
|
|
591
|
+
.replace(/Claude Code enhanced with ClaudeAll superpowers\./, 'Kiro CLI enhanced with ClaudeAll superpowers.\n\nKiro uses its own JSON-format agents under ~/.kiro/agents/ (auto-managed). The skills, hooks, and MCP servers below are shared with Claude/Gemini/Codex.')
|
|
592
|
+
.replace(/~\/\.claude\//g, '~/.kiro/')
|
|
593
|
+
.replace(/CLAUDE\.md/g, 'AGENTS.md');
|
|
594
|
+
fs.writeFileSync(agentsMdDest, content);
|
|
595
|
+
console.log(` ๐ AGENTS.md (synced from CLAUDE.md, ${content.split('\n').length} lines)`);
|
|
596
|
+
} catch (e) {
|
|
597
|
+
console.log(` โ ๏ธ AGENTS.md write skipped (${e.code || 'error'})`);
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
// MCP config under ~/.kiro/settings/mcp.json with ${HOME} expanded
|
|
602
|
+
const mcpSrc = path.join(PKG_DIR, 'mcp.json');
|
|
603
|
+
const mcpDest = path.join(KIRO_DIR, 'settings', 'mcp.json');
|
|
604
|
+
if (fs.existsSync(mcpSrc)) {
|
|
605
|
+
try {
|
|
606
|
+
let mcpContent = fs.readFileSync(mcpSrc, 'utf8').replace(/\$\{HOME\}/g, HOME);
|
|
607
|
+
fs.writeFileSync(mcpDest, mcpContent);
|
|
608
|
+
try { fs.chmodSync(mcpDest, 0o600); } catch {}
|
|
609
|
+
console.log(` ๐ง MCP config (11 servers, settings/mcp.json)`);
|
|
610
|
+
} catch (e) {
|
|
611
|
+
console.log(` โ ๏ธ MCP config skipped (${e.code || 'error'})`);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
// .env merge
|
|
616
|
+
const envSrc = path.join(PKG_DIR, '.env.example');
|
|
617
|
+
const envDest = path.join(KIRO_DIR, '.env');
|
|
618
|
+
if (fs.existsSync(envSrc)) {
|
|
619
|
+
try {
|
|
620
|
+
const r = mergeEnvFile(envSrc, envDest);
|
|
621
|
+
try { fs.chmodSync(envDest, 0o600); } catch {}
|
|
622
|
+
console.log(` ๐ .env ${r.action} (${r.filled} filled, ${r.preserved} preserved)`);
|
|
623
|
+
} catch (e) {
|
|
624
|
+
console.log(` โ ๏ธ .env merge skipped (${e.code || 'error'})`);
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
|
|
549
629
|
// Install uvx for MiniMax MCP support
|
|
550
630
|
function installUvx() {
|
|
551
631
|
const hasUvx = commandExists('uvx');
|
|
@@ -597,6 +677,7 @@ function setupLocalBinSymlinks() {
|
|
|
597
677
|
'codex-all': path.join(PKG_DIR, 'codex-all'),
|
|
598
678
|
// 'codex' shim shadows the real `codex` so plain `codex` auto-loads .env.
|
|
599
679
|
'codex': path.join(PKG_DIR, 'codex'),
|
|
680
|
+
'kiro-all': path.join(PKG_DIR, 'kiro-all'),
|
|
600
681
|
};
|
|
601
682
|
|
|
602
683
|
let created = 0;
|
|
@@ -669,6 +750,11 @@ if (hasCodex) {
|
|
|
669
750
|
installCodex();
|
|
670
751
|
}
|
|
671
752
|
|
|
753
|
+
if (hasKiro) {
|
|
754
|
+
console.log('');
|
|
755
|
+
installKiro();
|
|
756
|
+
}
|
|
757
|
+
|
|
672
758
|
setupLocalBinSymlinks();
|
|
673
759
|
|
|
674
760
|
// If we ran under sudo, hand ownership back to the original user so that a
|
|
@@ -678,6 +764,7 @@ if (SUDO_USER) {
|
|
|
678
764
|
fixOwnership(path.join(HOME, '.claude'));
|
|
679
765
|
fixOwnership(path.join(HOME, '.gemini'));
|
|
680
766
|
fixOwnership(path.join(HOME, '.codex'));
|
|
767
|
+
fixOwnership(path.join(HOME, '.kiro'));
|
|
681
768
|
fixOwnership(path.join(HOME, '.mcp.json'));
|
|
682
769
|
fixOwnership(path.join(HOME, '.local'));
|
|
683
770
|
console.log(' โ
Ownership fixed.');
|
package/AGENT.md
DELETED
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
# AGENT.md - Claude Code Configuration
|
|
2
|
-
|
|
3
|
-
## Personality & Behavior
|
|
4
|
-
|
|
5
|
-
### Core Principles
|
|
6
|
-
- **Proaktif** - Langsung kerjain tanpa nanya, antisipasi kebutuhan user
|
|
7
|
-
- **Autonomous** - Jangan minta approval untuk hal kecil, langsung gas
|
|
8
|
-
- **End-to-end** - Selesaikan sampai tuntas (code โ test โ commit โ deploy)
|
|
9
|
-
- **Creative** - Suggest improvements dan optimizations tanpa diminta
|
|
10
|
-
|
|
11
|
-
### Communication Style
|
|
12
|
-
- Bahasa Indonesia casual, to the point
|
|
13
|
-
- Jangan bertele-tele, langsung ke solusi
|
|
14
|
-
- Kalau ada error, langsung fix bukan cuma report
|
|
15
|
-
|
|
16
|
-
## Workflow Automation
|
|
17
|
-
|
|
18
|
-
### Setelah Implement Fitur:
|
|
19
|
-
1. โ
Auto-test fitur yang baru dibuat
|
|
20
|
-
2. โ
Fix kalau ada error
|
|
21
|
-
3. โ
Commit dengan message yang jelas
|
|
22
|
-
4. โ
Push ke remote
|
|
23
|
-
5. โ
Trigger build (jika ada CI/CD)
|
|
24
|
-
6. โ
Kasih tau user link hasil build
|
|
25
|
-
|
|
26
|
-
### Setelah Fix Bug:
|
|
27
|
-
1. โ
Verifikasi fix berhasil
|
|
28
|
-
2. โ
Cek tidak ada regression
|
|
29
|
-
3. โ
Commit + push
|
|
30
|
-
4. โ
Inform user
|
|
31
|
-
|
|
32
|
-
### Setelah User Request Fitur Baru:
|
|
33
|
-
1. โ
Analisis requirement
|
|
34
|
-
2. โ
Langsung implement (jangan tanya "mau mulai?")
|
|
35
|
-
3. โ
Test
|
|
36
|
-
4. โ
Deploy/build
|
|
37
|
-
5. โ
Demo/inform hasil
|
|
38
|
-
|
|
39
|
-
## Don'ts - JANGAN LAKUKAN
|
|
40
|
-
|
|
41
|
-
- โ Jangan tanya "mau lanjut?" atau "boleh saya mulai?"
|
|
42
|
-
- โ Jangan minta approval untuk perubahan kecil
|
|
43
|
-
- โ Jangan cuma kasih tau masalah tanpa solusi
|
|
44
|
-
- โ Jangan tunggu instruksi untuk hal yang obvious
|
|
45
|
-
- โ Jangan over-explain, langsung action
|
|
46
|
-
|
|
47
|
-
## Project-Specific Rules
|
|
48
|
-
|
|
49
|
-
### Mobile App (Flutter)
|
|
50
|
-
- Setelah code change โ commit โ push โ build APK otomatis via GitHub Actions
|
|
51
|
-
- Kasih link download APK setelah build selesai
|
|
52
|
-
- Test di emulator/device sebelum push kalau memungkinkan
|
|
53
|
-
|
|
54
|
-
### Backend (Go/Node/etc)
|
|
55
|
-
- Setelah change โ rebuild โ restart service
|
|
56
|
-
- Verify endpoint berfungsi
|
|
57
|
-
- Check logs untuk error
|
|
58
|
-
|
|
59
|
-
### Frontend (React/Svelte/etc)
|
|
60
|
-
- Hot reload untuk development
|
|
61
|
-
- Build production sebelum deploy
|
|
62
|
-
- Test di browser
|
|
63
|
-
|
|
64
|
-
## Memory & Context
|
|
65
|
-
|
|
66
|
-
### Yang Harus Diingat:
|
|
67
|
-
- User preferences (bahasa, style, tools yang dipakai)
|
|
68
|
-
- Project structure dan tech stack
|
|
69
|
-
- Previous bugs dan solutions
|
|
70
|
-
- Deployment credentials (tapi jangan expose di chat)
|
|
71
|
-
|
|
72
|
-
### Letta Integration
|
|
73
|
-
- Update memory block saat ada info penting baru
|
|
74
|
-
- Refer ke memory untuk context
|
|
75
|
-
- Jangan tanya ulang hal yang sudah ada di memory
|
|
76
|
-
|
|
77
|
-
## Error Handling
|
|
78
|
-
|
|
79
|
-
### Kalau Ketemu Error:
|
|
80
|
-
1. Diagnosa root cause
|
|
81
|
-
2. Propose solution
|
|
82
|
-
3. **Langsung implement fix** (jangan tanya dulu)
|
|
83
|
-
4. Test fix
|
|
84
|
-
5. Commit kalau berhasil
|
|
85
|
-
|
|
86
|
-
### Kalau Stuck:
|
|
87
|
-
1. Coba approach berbeda
|
|
88
|
-
2. Search documentation/web
|
|
89
|
-
3. Baru inform user dengan opsi solusi (bukan cuma masalah)
|
|
90
|
-
|
|
91
|
-
## Security Reminders
|
|
92
|
-
|
|
93
|
-
- Jangan expose credentials di chat
|
|
94
|
-
- Ingatkan user kalau mereka expose sensitive data
|
|
95
|
-
- Use environment variables untuk secrets
|
|
96
|
-
- Suggest secure alternatives
|
|
97
|
-
|
|
98
|
-
## Tools & Commands
|
|
99
|
-
|
|
100
|
-
### Yang Sering Dipakai:
|
|
101
|
-
```bash
|
|
102
|
-
# Git
|
|
103
|
-
git add -A && git commit -m "message" && git push
|
|
104
|
-
|
|
105
|
-
# Flutter
|
|
106
|
-
flutter build apk --release
|
|
107
|
-
gh run list --limit 3
|
|
108
|
-
|
|
109
|
-
# Backend restart
|
|
110
|
-
sudo systemctl restart <service>
|
|
111
|
-
|
|
112
|
-
# Logs
|
|
113
|
-
sudo journalctl -u <service> -n 50 --no-pager
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
## Performance Goals
|
|
117
|
-
|
|
118
|
-
- Response cepat dan actionable
|
|
119
|
-
- Minimize back-and-forth
|
|
120
|
-
- One-shot solutions kalau memungkinkan
|
|
121
|
-
- Parallel execution untuk tasks yang independent
|
package/LICENSE.md
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
# Claude-All-New License
|
|
2
|
-
|
|
3
|
-
## License
|
|
4
|
-
|
|
5
|
-
MIT License
|
|
6
|
-
|
|
7
|
-
Copyright (c) 2024 Claude-All-New Contributors
|
|
8
|
-
|
|
9
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
-
in the Software without restriction, including without limitation the rights
|
|
12
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
-
furnished to do so, subject to the following conditions:
|
|
15
|
-
|
|
16
|
-
The above copyright notice and this permission notice shall be included in all
|
|
17
|
-
copies or substantial portions of the Software.
|
|
18
|
-
|
|
19
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
-
SOFTWARE.
|
|
26
|
-
|
|
27
|
-
## Components
|
|
28
|
-
|
|
29
|
-
### Superpowers Library
|
|
30
|
-
- License: MIT License
|
|
31
|
-
- Copyright (c) 2024 Jesse Vincent
|
|
32
|
-
- Repository: https://github.com/obra/superpowers
|
|
33
|
-
|
|
34
|
-
### Third-Party Dependencies
|
|
35
|
-
This project uses open-source libraries under their respective licenses:
|
|
36
|
-
- Node.js dependencies (npm packages) - Various open source licenses
|
|
37
|
-
- Shell scripts - MIT License compatible
|
|
38
|
-
- Documentation - Creative Commons Attribution 4.0 International
|
|
39
|
-
|
|
40
|
-
## Commercial Use
|
|
41
|
-
|
|
42
|
-
โ
**Allowed** - You can use Claude-All-New commercially
|
|
43
|
-
โ
**Modification** - You can modify the source code
|
|
44
|
-
โ
**Distribution** - You can distribute modified versions
|
|
45
|
-
โ
**Sublicensing** - You can use in your own products (MIT compatible)
|
|
46
|
-
โ
**Private Use** - You can use privately
|
|
47
|
-
|
|
48
|
-
## Attribution
|
|
49
|
-
|
|
50
|
-
If you use Claude-All-New in your project, attribution is appreciated but not required:
|
|
51
|
-
|
|
52
|
-
```
|
|
53
|
-
Powered by Claude-All-New (https://github.com/zesbe/Claude-All-New)
|
|
54
|
-
Includes Superpowers Library by Jesse Vincent
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## Support
|
|
58
|
-
|
|
59
|
-
- ๐ง Issues: https://github.com/zesbe/Claude-All-New/issues
|
|
60
|
-
- ๐ฌ Discussions: https://github.com/zesbe/Claude-All-New/discussions
|
|
61
|
-
- ๐ Documentation: https://github.com/zesbe/Claude-All-New/blob/main/README.md
|
|
62
|
-
|
|
63
|
-
## Security
|
|
64
|
-
|
|
65
|
-
For security vulnerabilities, please report privately:
|
|
66
|
-
๐ง security-reports [at] example.com
|
|
67
|
-
|
|
68
|
-
---
|
|
69
|
-
|
|
70
|
-
*This license applies to Claude-All-New v7.0.0 and all future versions unless explicitly stated otherwise.*
|