@open330/agt 2026.4.3 → 2026.4.6

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 ADDED
@@ -0,0 +1,624 @@
1
+ <p align="center">
2
+ <br>
3
+ <img src="https://raw.githubusercontent.com/open330/agt/main/assets/banner.png" alt="agt — A modular toolkit for extending AI coding agents" width="720">
4
+ <br><br>
5
+ <a href="https://github.com/open330/agt/stargazers"><img src="https://img.shields.io/github/stars/open330/agt?style=for-the-badge&color=ff6b6b&labelColor=1a1a2e" alt="Stars"></a>
6
+ <a href="https://github.com/open330/agt/releases"><img src="https://img.shields.io/github/v/release/open330/agt?style=for-the-badge&color=feca57&labelColor=1a1a2e&label=agt" alt="agt Release"></a>
7
+ <a href="https://www.npmjs.com/package/@open330/agt"><img src="https://img.shields.io/npm/v/@open330/agt?style=for-the-badge&color=c0392b&labelColor=1a1a2e&logo=npm&logoColor=white" alt="npm"></a>
8
+ <a href="#license"><img src="https://img.shields.io/badge/license-MIT-54a0ff?style=for-the-badge&labelColor=1a1a2e" alt="License"></a>
9
+ <img src="https://img.shields.io/badge/skills-33-ee5a24?style=for-the-badge&labelColor=1a1a2e" alt="Skills">
10
+ <img src="https://img.shields.io/badge/personas-7-78e08f?style=for-the-badge&labelColor=1a1a2e" alt="Personas">
11
+ <br><br>
12
+ <a href="#quickstart">Quickstart</a> •
13
+ <a href="#skills-catalog">Skills</a> •
14
+ <a href="#personas">Personas</a> •
15
+ <a href="#hooks">Hooks</a> •
16
+ <a href="#install">Install</a> •
17
+ <a href="#contributing">Contributing</a>
18
+ <br>
19
+ <b><a href="README_ko.md">한국어</a></b>
20
+ </p>
21
+
22
+ ---
23
+
24
+ ## What is this?
25
+
26
+ A collection of **skills**, **personas**, and **hooks** for AI coding agents (Claude Code, Codex CLI, Gemini CLI). Each skill is a self-contained markdown module that gives an agent domain-specific capabilities.
27
+
28
+ > **CLI tool:** Install and manage skills with **[agt](https://github.com/open330/agt)** — `npm install -g @open330/agt` or just `npx @open330/agt`
29
+
30
+ ---
31
+
32
+ ## Quickstart
33
+
34
+ ```bash
35
+ # Install agt globally
36
+ npm install -g @open330/agt
37
+
38
+ # Install the core profile (essential skills for every workspace)
39
+ agt skill install --profile core
40
+
41
+ # Install all available personas globally
42
+ agt persona install --global --from jiunbae/agent-skills
43
+
44
+ # Verify installation
45
+ agt skill list
46
+ agt persona list
47
+ ```
48
+
49
+ ---
50
+
51
+ ## Install
52
+
53
+ ### With npx (No Install)
54
+
55
+ ```bash
56
+ npx @open330/agt skill install --profile core # Install core skills
57
+ npx @open330/agt skill install -g --from jiunbae/agent-skills # Browse & install from repo
58
+ npx @open330/agt persona install -g --from jiunbae/agent-skills
59
+ ```
60
+
61
+ ### With agt CLI (Global Install)
62
+
63
+ ```bash
64
+ npm install -g @open330/agt
65
+ agt skill install --profile core
66
+ agt skill install -g git-commit-pr # Install a skill globally
67
+ agt persona install -g --all # Install all personas globally
68
+ agt skill update # Update all remote-installed skills
69
+ ```
70
+
71
+ ### With install.sh
72
+
73
+ ```bash
74
+ git clone https://github.com/jiunbae/agent-skills ~/.agent-skills
75
+ cd ~/.agent-skills
76
+
77
+ ./install.sh --core # Core skills only
78
+ ./install.sh --core --hooks # Core + hooks
79
+ ./install.sh all --link-static --codex # Everything
80
+ ./install.sh --list # List available options
81
+ ```
82
+
83
+ ### Install Options
84
+
85
+ | Option | Description |
86
+ |--------|-------------|
87
+ | `--core` | Install core skills globally (recommended) |
88
+ | `--link-static` | Symlink `~/.agents` -> `static/` (global context) |
89
+ | `--codex` | Codex CLI support (AGENTS.md + skills symlink) |
90
+ | `--hooks` | Install Claude Code hooks |
91
+ | `--personas` | Install agent personas |
92
+ | `--copy` | Copy instead of symlink |
93
+ | `--dry-run` | Preview only |
94
+ | `--uninstall` | Remove installed skills |
95
+
96
+ ### Core Skills
97
+
98
+ Installed by default with `--core`:
99
+
100
+ - `development/git-commit-pr` — Git commit & PR guide
101
+ - `context/context-manager` — Project context auto-loader
102
+ - `context/static-index` — Global static context index
103
+ - `security/security-auditor` — Repository security audit
104
+ - `agents/background-implementer` — Background parallel implementation
105
+ - `agents/background-planner` — Background parallel planning
106
+ - `agents/background-reviewer` — Multi-LLM parallel code review
107
+
108
+ ---
109
+
110
+ ## Skills Catalog
111
+
112
+ ### 🤖 agents/ — AI Agents
113
+
114
+ | Skill | Description |
115
+ |-------|-------------|
116
+ | `background-implementer` | Parallel multi-LLM implementation with context safety |
117
+ | `background-planner` | Parallel multi-LLM planning with auto-save |
118
+ | `background-reviewer` | Multi-LLM parallel code review (security/architecture/quality) |
119
+
120
+ ### 🛠 development/ — Dev Tools
121
+
122
+ | Skill | Description |
123
+ |-------|-------------|
124
+ | `context-worktree` | Auto git worktree per task |
125
+ | `git-commit-pr` | Git commit & PR generation guide |
126
+ | `iac-deploy-prep` | IaC deployment prep (K8s, Dockerfile, CI/CD) |
127
+ | `multi-ai-code-review` | Multi-AI code review orchestrator |
128
+ | `playwright` | Playwright browser automation |
129
+ | `pr-review-loop` | PR review await & auto-fix loop |
130
+ | `task-master` | Task Master CLI task management |
131
+
132
+ ### 📊 business/ — Business
133
+
134
+ | Skill | Description |
135
+ |--------|-------------|
136
+ | `bm-analyzer` | Business model analysis & monetization strategy |
137
+ | `document-processor` | PDF, DOCX, XLSX, PPTX processing |
138
+ | `proposal-analyzer` | Proposal / RFP analysis |
139
+
140
+ ### 🔗 integrations/ — Integrations
141
+
142
+ | Skill | Description |
143
+ |-------|-------------|
144
+ | `appstore-connect` | App Store Connect automation |
145
+ | `discord-skill` | Discord REST API |
146
+ | `google-search-console` | Google Search Console API |
147
+ | `kubernetes-skill` | Kubernetes cluster management |
148
+ | `notion-summary` | Notion page upload |
149
+ | `obsidian-tasks` | Obsidian TaskManager (Kanban, Dataview) |
150
+ | `obsidian-writer` | Obsidian Vault document upload |
151
+ | `service-manager` | Docker container & service management |
152
+ | `slack-skill` | Slack app development & API |
153
+ | `vault-secrets` | Vaultwarden credentials & API key management |
154
+
155
+ ### 🧠 ml/ — ML/AI
156
+
157
+ | Skill | Description |
158
+ |-------|-------------|
159
+ | `audio-processor` | ffmpeg-based audio processing |
160
+ | `ml-benchmark` | ML model benchmarking |
161
+ | `model-sync` | Model file server sync |
162
+ | `triton-deploy` | Triton Inference Server deployment |
163
+
164
+ ### 🔐 security/ — Security
165
+
166
+ | Skill | Description |
167
+ |-------|-------------|
168
+ | `security-auditor` | Repository security audit |
169
+
170
+ ### 📁 context/ — Context Management
171
+
172
+ | Skill | Description |
173
+ |-------|-------------|
174
+ | `context-manager` | Project context auto-loader |
175
+ | `static-index` | Global static context index with user profile |
176
+
177
+ ### 🔧 meta/ — Meta Skills
178
+
179
+ | Skill | Description |
180
+ |-------|-------------|
181
+ | `karpathy-guide` | LLM coding error reduction guidelines |
182
+ | `skill-manager` | Skill ecosystem management |
183
+ | `skill-recommender` | Skill auto-recommender |
184
+
185
+ ---
186
+
187
+ ## Personas
188
+
189
+ Expert identities as markdown files — usable with **any** AI agent.
190
+
191
+ | Persona | Role | Domain |
192
+ |---------|------|--------|
193
+ | `security-reviewer` | Senior AppSec Engineer | OWASP, auth, injection |
194
+ | `architecture-reviewer` | Principal Architect | SOLID, API design, coupling |
195
+ | `code-quality-reviewer` | Staff Engineer | Readability, complexity, DRY |
196
+ | `performance-reviewer` | Performance Engineer | Memory, CPU, I/O, scalability |
197
+ | `database-reviewer` | Senior DBA | Query optimization, schema, indexing |
198
+ | `frontend-reviewer` | Senior Frontend Engineer | React, accessibility, performance |
199
+ | `devops-reviewer` | Senior DevOps/SRE | K8s, IaC, CI/CD |
200
+
201
+ ### Using with agt CLI
202
+
203
+ ```bash
204
+ agt persona review security-reviewer --codex
205
+ agt persona review security-reviewer --codex "is this architecture scalable?"
206
+ agt persona install -g --all
207
+ agt persona show security-reviewer
208
+ ```
209
+
210
+ ### Using Directly
211
+
212
+ Personas are just `.md` files. Any agent that can read a file can adopt a persona:
213
+
214
+ ```bash
215
+ cat personas/security-reviewer.md | codex -q "Review this code"
216
+ cat personas/security-reviewer.md # pipe to any AI agent
217
+ ```
218
+
219
+ ```
220
+ .agents/personas/security-reviewer.md ← project local (highest priority)
221
+ ~/.agents/personas/security-reviewer.md ← user global
222
+ personas/security-reviewer.md ← library (bundled)
223
+ ```
224
+
225
+ ---
226
+
227
+ ## Hooks
228
+
229
+ Event-driven automation for Claude Code.
230
+
231
+ ```bash
232
+ ./install.sh --hooks
233
+ ```
234
+
235
+ | Hook | Event | Description |
236
+ |------|-------|-------------|
237
+ | `english-coach` | `UserPromptSubmit` | Rewrites prompts in natural English with vocabulary |
238
+ | `prompt-logger` | `UserPromptSubmit` | Logs prompts to MinIO for analytics |
239
+
240
+ ---
241
+
242
+ ## Creating Your Own Skills Repo
243
+
244
+ You can create your own skills repository with the same structure as this one. `agt` will discover it automatically.
245
+
246
+ ### Directory Structure
247
+
248
+ ```
249
+ my-skills/
250
+ ├── agents/ # Group: AI agent skills
251
+ │ └── my-agent/
252
+ │ └── SKILL.md # Required
253
+ ├── development/ # Group: dev tools
254
+ │ └── my-tool/
255
+ │ ├── SKILL.md # Required
256
+ │ ├── scripts/ # Optional: helper scripts
257
+ │ └── templates/ # Optional: templates
258
+ ├── personas/ # Personas directory
259
+ │ ├── my-reviewer/
260
+ │ │ └── PERSONA.md
261
+ │ └── my-expert.md # Single-file persona also works
262
+ ├── static/ # Optional: global context files
263
+ │ └── WHOAMI.sample.md
264
+ ├── profiles.yml # Optional: installation profiles
265
+ ├── agt.toml # Optional: post-install manifest
266
+ └── README.md
267
+ ```
268
+
269
+ ### agt.toml (Post-Install Manifest)
270
+
271
+ Repos can include an `agt.toml` to declare setup actions that run after `agt skill install --from`. This keeps repo-specific setup logic out of the `agt` CLI itself.
272
+
273
+ ```toml
274
+ # Copy static context files to ~/.agents/ after skill installation
275
+ [[setup.copy]]
276
+ from = "static" # Source directory (relative to repo root)
277
+ to = "~/.agents" # Target directory (must be ~/... path)
278
+ strategy = "merge" # merge: skip existing files, replace: overwrite
279
+
280
+ # Copy personas to ~/.agents/personas/
281
+ [[setup.copy]]
282
+ from = "personas"
283
+ to = "~/.agents/personas"
284
+ strategy = "merge"
285
+ ```
286
+
287
+ | Field | Required | Description |
288
+ |-------|----------|-------------|
289
+ | `from` | Yes | Source path relative to repo root (no `..` or absolute paths) |
290
+ | `to` | Yes | Target path, must be home-relative (`~/...`) |
291
+ | `strategy` | No | `merge` (default, skip existing) or `replace` (overwrite) |
292
+
293
+ **Safety:** Source paths must be within the repo. Target paths must be under `~/`. Symlink targets are skipped (if `~/.agents` is already a symlink, the user manages it). Existing files are preserved with `merge` strategy.
294
+
295
+ ### SKILL.md Format
296
+
297
+ ```yaml
298
+ ---
299
+ name: my-skill-name
300
+ description: "What this skill does. Use for 'keyword1', 'keyword2' requests."
301
+ trigger-keywords: keyword1, keyword2, 키워드
302
+ allowed-tools: Read, Write, Edit, Bash, Grep, Glob
303
+ priority: high
304
+ tags: [category, tool-name]
305
+ ---
306
+
307
+ # Skill Title
308
+
309
+ ## Quick Start
310
+
311
+ \`\`\`bash
312
+ command --example
313
+ \`\`\`
314
+
315
+ ## Workflow
316
+
317
+ Step-by-step instructions for the AI agent...
318
+
319
+ ## Best Practices
320
+
321
+ **DO:**
322
+ - Follow this pattern
323
+
324
+ **DON'T:**
325
+ - Avoid this anti-pattern
326
+ ```
327
+
328
+ | Field | Required | Description |
329
+ |-------|----------|-------------|
330
+ | `name` | Yes | Skill identifier (kebab-case) |
331
+ | `description` | Yes | What the skill does + trigger keywords |
332
+ | `trigger-keywords` | No | Comma-separated activation keywords |
333
+ | `allowed-tools` | No | Tools available to the skill |
334
+ | `priority` | No | `high` / `medium` / `low` |
335
+ | `tags` | No | Category tags |
336
+
337
+ ### PERSONA.md Format
338
+
339
+ ```yaml
340
+ ---
341
+ name: my-reviewer
342
+ role: "Senior Engineer — Domain Expert"
343
+ domain: security
344
+ type: review
345
+ tags: [security, owasp, auth]
346
+ ---
347
+
348
+ # My Reviewer
349
+
350
+ ## Identity
351
+
352
+ Background, expertise, and review philosophy...
353
+
354
+ ## Review Lens
355
+
356
+ When reviewing, evaluate:
357
+ 1. Security vulnerabilities
358
+ 2. Best practice adherence
359
+ ...
360
+
361
+ ## Output Format
362
+
363
+ ### Findings
364
+ #### [SEVERITY] Finding Title
365
+ - **File**: path:line
366
+ - **Impact**: Description
367
+ - **Recommendation**: Fix
368
+ ```
369
+
370
+ | Field | Required | Description |
371
+ |-------|----------|-------------|
372
+ | `name` | Yes | Persona identifier (kebab-case) |
373
+ | `role` | Yes | Job title / expert role |
374
+ | `domain` | Yes | Expertise domain |
375
+ | `type` | Yes | Usually `review` |
376
+ | `tags` | Yes | Relevant focus areas |
377
+
378
+ ### profiles.yml Format
379
+
380
+ ```yaml
381
+ core:
382
+ description: "Essential skills for every workspace"
383
+ skills: # Explicit skill paths
384
+ - development/git-commit-pr
385
+ - context/context-manager
386
+ groups: # Include entire groups
387
+ - agents
388
+
389
+ dev:
390
+ description: "Development workflow tools"
391
+ groups:
392
+ - development
393
+ ```
394
+
395
+ ### Test & Install
396
+
397
+ ```bash
398
+ # Point agt to your repo
399
+ export AGT_DIR=~/my-skills
400
+ # Or clone to the default location
401
+ git clone https://github.com/you/my-skills ~/.agent-skills
402
+
403
+ agt skill list # Verify skills discovered
404
+ agt skill install my-skill -g # Install globally
405
+ agt skill install --profile core # Install a profile
406
+ agt persona install my-reviewer # Install a persona
407
+
408
+ # Others can install from your repo directly
409
+ agt skill install --from you/my-skills
410
+ agt persona install --from you/my-skills
411
+ ```
412
+
413
+ ---
414
+
415
+ ## Create with AI (Prompts)
416
+
417
+ Copy-paste these prompts to create skills and personas with any AI agent.
418
+
419
+ ### Create a Skill
420
+
421
+ <details>
422
+ <summary><b>Prompt: Create a new skill</b></summary>
423
+
424
+ ```
425
+ Create a new skill for the agent-skills repository.
426
+
427
+ Skill name: [YOUR_SKILL_NAME]
428
+ Group: [GROUP_NAME] (e.g., development, integrations, agents, ml, security)
429
+ Description: [WHAT_THE_SKILL_DOES]
430
+
431
+ Create the file at [GROUP]/[SKILL_NAME]/SKILL.md with this structure:
432
+
433
+ 1. YAML frontmatter with: name, description (include trigger keywords and Korean keywords
434
+ if applicable), trigger-keywords, allowed-tools, priority, tags
435
+ 2. A "Quick Start" section with 2-3 essential commands/examples
436
+ 3. A "Workflow" section with step-by-step instructions
437
+ 4. A "Best Practices" section with DO/DON'T guidelines
438
+
439
+ Rules:
440
+ - Description should be third person, under 200 chars, end with trigger conditions
441
+ - Keep under 300 lines total
442
+ - Code examples should be practical and production-ready
443
+ - Include both English and Korean trigger keywords where relevant
444
+ - Focus on what the AI agent should DO, not theory
445
+
446
+ Reference this existing skill for style:
447
+ ---
448
+ name: git-commit-pr
449
+ description: "Guides git commit and PR creation with security validation. Activates on
450
+ commit, PR, pull request requests."
451
+ trigger-keywords: commit, pr, pull request, 커밋
452
+ allowed-tools: Read, Bash, Grep, Glob
453
+ priority: high
454
+ tags: [git, commit, pr, security]
455
+ ---
456
+ ```
457
+
458
+ </details>
459
+
460
+ ### Create a Persona
461
+
462
+ <details>
463
+ <summary><b>Prompt: Create a review persona</b></summary>
464
+
465
+ ```
466
+ Create a new code review persona for the agent-skills repository.
467
+
468
+ Persona name: [PERSONA_NAME]-reviewer
469
+ Domain: [DOMAIN] (e.g., security, architecture, performance, database, frontend, devops)
470
+ Role: [JOB_TITLE]
471
+
472
+ Create the file at personas/[PERSONA_NAME]/PERSONA.md with this structure:
473
+
474
+ 1. YAML frontmatter with: name, role, domain, type (review), tags
475
+ 2. "Identity" section: background, expertise (5+ bullet points), attitude (2-3 sentences)
476
+ 3. "Review Lens" section: numbered list of what they evaluate
477
+ 4. "Evaluation Framework" section: table with Category, Severity (CRITICAL/HIGH/MEDIUM/LOW), Criteria
478
+ 5. "Output Format" section: markdown template for review output
479
+ 6. "Red Flags" section: patterns that MUST always be flagged
480
+ 7. "Key Principles" section: numbered guiding principles
481
+
482
+ Rules:
483
+ - The persona should be opinionated and have a clear point of view
484
+ - Include specific technologies/frameworks in their expertise
485
+ - Red flags should be concrete, not generic
486
+ - Output format should include: Summary, Findings (with severity), Positive Observations
487
+ - Keep under 200 lines
488
+
489
+ Reference this existing persona for style:
490
+ ---
491
+ name: security-reviewer
492
+ role: "Senior Application Security Engineer"
493
+ domain: security
494
+ type: review
495
+ tags: [security, owasp, auth, injection, xss, ssrf]
496
+ ---
497
+ ```
498
+
499
+ </details>
500
+
501
+ ### Create a Profile
502
+
503
+ <details>
504
+ <summary><b>Prompt: Create an installation profile</b></summary>
505
+
506
+ ```
507
+ Create a new installation profile for the agent-skills repository.
508
+
509
+ Profile name: [PROFILE_NAME]
510
+ Purpose: [WHO_IS_THIS_FOR]
511
+ Available groups: agents, development, business, integrations, ml, security, context, meta
512
+
513
+ Add the profile to profiles.yml with:
514
+ - description: one-line description of the profile
515
+ - skills: list of specific group/skill-name paths to include (optional)
516
+ - groups: list of group names to include all skills from (optional)
517
+
518
+ You can mix both "skills" (specific picks) and "groups" (entire categories).
519
+
520
+ Example:
521
+ ```yaml
522
+ backend:
523
+ description: "Backend development essentials"
524
+ skills:
525
+ - context/context-manager
526
+ - security/security-auditor
527
+ groups:
528
+ - development
529
+ - integrations
530
+ ```
531
+
532
+ Keep profiles focused — a profile with everything is just "full" or "all".
533
+ ```
534
+
535
+ </details>
536
+
537
+ ### Create a Complete Skills Repo
538
+
539
+ <details>
540
+ <summary><b>Prompt: Bootstrap a new skills repository</b></summary>
541
+
542
+ ```
543
+ Create a new agent-skills repository with the following structure. This repo will be
544
+ discoverable by the `agt` CLI tool (https://github.com/open330/agt).
545
+
546
+ Repository purpose: [YOUR_PURPOSE]
547
+ Skills to include: [LIST_OF_SKILLS]
548
+ Personas to include: [LIST_OF_PERSONAS]
549
+
550
+ Create the following structure:
551
+
552
+ 1. Group directories (e.g., development/, integrations/) containing skill subdirectories
553
+ 2. Each skill has a SKILL.md with YAML frontmatter (name, description, trigger-keywords,
554
+ allowed-tools, priority, tags) and markdown content (Quick Start, Workflow, Best Practices)
555
+ 3. A personas/ directory with PERSONA.md files for each persona
556
+ 4. A profiles.yml defining installation profiles (core, dev, full at minimum)
557
+ 5. A README.md documenting the repository
558
+
559
+ Requirements:
560
+ - Skills are organized by group: each group is a directory, each skill is a subdirectory
561
+ - A valid skill must have SKILL.md in its directory
562
+ - A valid persona must have PERSONA.md (in a directory or as a standalone .md file)
563
+ - profiles.yml uses "skills" (explicit paths) and/or "groups" (entire categories)
564
+ - The "all" profile is built-in to agt, no need to define it
565
+
566
+ Users install with:
567
+ git clone https://github.com/you/repo ~/.agent-skills
568
+ agt skill install --profile core -g
569
+ agt persona install --all -g
570
+ ```
571
+
572
+ </details>
573
+
574
+ ---
575
+
576
+ ## Architecture
577
+
578
+ ```
579
+ agent-skills/ open330/agt (CLI tool)
580
+ ├── agents/ AI agent skills ├── agt/ Rust CLI
581
+ ├── development/ Dev tool skills ├── npm/ npm packaging
582
+ ├── business/ Business skills ├── setup.sh Installer
583
+ ├── integrations/ Integration skills └── assets/ Branding
584
+ ├── ml/ ML/AI skills
585
+ ├── security/ Security skills
586
+ ├── context/ Context management
587
+ ├── meta/ Meta skills
588
+ ├── personas/ Expert personas
589
+ ├── hooks/ Claude Code hooks
590
+ ├── static/ Global context
591
+ ├── agt.toml Post-install manifest
592
+ ├── install.sh Local installer
593
+ └── codex-support/ Codex CLI
594
+ ```
595
+
596
+ ---
597
+
598
+ ## Contributing
599
+
600
+ 1. **Add a skill** — Create a new skill in the appropriate category
601
+ 2. **Add a persona** — Create a domain expert persona
602
+ 3. **Improve docs** — Fix typos, add examples, translate
603
+ 4. **Report issues** — Bug reports and feature requests welcome
604
+
605
+ ```bash
606
+ git clone https://github.com/jiunbae/agent-skills ~/.agent-skills
607
+ cd ~/.agent-skills
608
+ ./install.sh --core
609
+ ```
610
+
611
+ For CLI tool contributions, see [open330/agt](https://github.com/open330/agt).
612
+
613
+ ---
614
+
615
+ ## License
616
+
617
+ MIT License.
618
+
619
+ ---
620
+
621
+ <p align="center">
622
+ <sub><strong>33</strong> skills | <strong>7</strong> personas | <strong>2</strong> hooks</sub><br>
623
+ <sub>CLI tool: <a href="https://github.com/open330/agt">open330/agt</a></sub>
624
+ </p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open330/agt",
3
- "version": "2026.4.3",
3
+ "version": "2026.4.6",
4
4
  "description": "agt — A modular toolkit for extending AI coding agents",
5
5
  "bin": {
6
6
  "agt": "bin/agt.js"
@@ -14,8 +14,9 @@
14
14
  "postinstall": "node scripts/postinstall.js"
15
15
  },
16
16
  "optionalDependencies": {
17
- "@open330/agt-darwin-arm64": "2026.4.3",
18
- "@open330/agt-linux-x64": "2026.4.3"
17
+ "@open330/agt-darwin-arm64": "2026.4.6",
18
+ "@open330/agt-linux-x64": "2026.4.6",
19
+ "@open330/agt-linux-arm64": "2026.4.6"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
@@ -6,6 +6,7 @@ const https = require("https");
6
6
  const PLATFORM_MAP = {
7
7
  "darwin-arm64": "aarch64-apple-darwin",
8
8
  "linux-x64": "x86_64-unknown-linux-musl",
9
+ "linux-arm64": "aarch64-unknown-linux-musl",
9
10
  };
10
11
 
11
12
  const platform = `${process.platform}-${process.arch}`;