@open330/agt 2026.3.17 → 2026.3.19
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 +160 -0
- package/bin/agt +0 -0
- package/package.json +5 -5
- package/platforms/darwin-arm64/bin/agt +0 -0
- package/platforms/darwin-arm64/package.json +1 -1
- package/platforms/darwin-x64/package.json +1 -1
- package/platforms/linux-arm64/package.json +1 -1
- package/platforms/linux-x64/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
# agt
|
|
2
|
+
|
|
3
|
+
> A modular toolkit for extending AI coding agents (Claude Code, Codex CLI, Gemini CLI)
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@open330/agt)
|
|
6
|
+
[](https://github.com/open330/agt/releases)
|
|
7
|
+
[](https://github.com/open330/agt)
|
|
8
|
+
|
|
9
|
+
Install and manage **skills**, **personas**, and **hooks** for AI coding agents. Each skill is a self-contained markdown module that gives an agent domain-specific capabilities.
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# No install needed — use npx
|
|
15
|
+
npx @open330/agt skill install --profile core
|
|
16
|
+
npx @open330/agt persona install -g --from jiunbae/agent-skills
|
|
17
|
+
|
|
18
|
+
# Or install globally
|
|
19
|
+
npm install -g @open330/agt
|
|
20
|
+
agt skill install --profile core
|
|
21
|
+
agt persona install -g --all
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Commands
|
|
25
|
+
|
|
26
|
+
### `agt skill` — Skill Management
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
agt skill install kubernetes-skill # Install to current workspace
|
|
30
|
+
agt skill install -g git-commit-pr # Install globally
|
|
31
|
+
agt skill install --profile core # Install a profile (curated set)
|
|
32
|
+
agt skill install --from user/repo # Install from a remote skills repo
|
|
33
|
+
agt skill list # List all available skills
|
|
34
|
+
agt skill list --installed # Show installed only
|
|
35
|
+
agt skill update # Update all remote-installed skills
|
|
36
|
+
agt skill uninstall kubernetes-skill # Remove a skill
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### `agt persona` — Persona Management
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
agt persona list # List personas
|
|
43
|
+
agt persona install -g security-reviewer # Install globally
|
|
44
|
+
agt persona install -g --all # Install all personas
|
|
45
|
+
agt persona create rust-expert --ai "Rust unsafe" # AI-generated persona
|
|
46
|
+
agt persona review security-reviewer # Run code review with persona
|
|
47
|
+
agt persona review security-reviewer --codex # Use Codex CLI
|
|
48
|
+
agt persona show security-reviewer # View persona details
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### `agt run` — Skill Execution
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
agt run "scan for security issues" # Auto skill matching
|
|
55
|
+
agt run --skill security-auditor "scan" # Specify skill explicitly
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### `agt hook` — Hook Management
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
agt hook install english-coach # Install a hook
|
|
62
|
+
agt hook list # List available hooks
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### `agt team` — Multi-Agent Teams
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
agt team run review # Run a team of agents
|
|
69
|
+
agt team list # List available teams
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Core Skills
|
|
73
|
+
|
|
74
|
+
Installed by default with `--profile core`:
|
|
75
|
+
|
|
76
|
+
| Skill | Description |
|
|
77
|
+
|-------|-------------|
|
|
78
|
+
| `git-commit-pr` | Git commit & PR guide with security validation |
|
|
79
|
+
| `context-manager` | Project context auto-loader |
|
|
80
|
+
| `static-index` | Global static context index |
|
|
81
|
+
| `security-auditor` | Repository security audit |
|
|
82
|
+
| `background-implementer` | Parallel multi-LLM implementation |
|
|
83
|
+
| `background-planner` | Parallel multi-LLM planning |
|
|
84
|
+
| `background-reviewer` | Multi-LLM parallel code review |
|
|
85
|
+
|
|
86
|
+
## Skills Catalog
|
|
87
|
+
|
|
88
|
+
**33 skills** across 8 categories:
|
|
89
|
+
|
|
90
|
+
| Category | Skills |
|
|
91
|
+
|----------|--------|
|
|
92
|
+
| **Agents** | background-implementer, background-planner, background-reviewer |
|
|
93
|
+
| **Development** | context-worktree, git-commit-pr, iac-deploy-prep, multi-ai-code-review, playwright, pr-review-loop, task-master |
|
|
94
|
+
| **Business** | bm-analyzer, document-processor, proposal-analyzer |
|
|
95
|
+
| **Integrations** | appstore-connect, discord, google-search-console, kubernetes, notion-summary, obsidian-tasks, obsidian-writer, service-manager, slack, vault-secrets |
|
|
96
|
+
| **ML/AI** | audio-processor, ml-benchmark, model-sync, triton-deploy |
|
|
97
|
+
| **Security** | security-auditor |
|
|
98
|
+
| **Context** | context-manager, static-index |
|
|
99
|
+
| **Meta** | karpathy-guide, skill-manager, skill-recommender |
|
|
100
|
+
|
|
101
|
+
## Personas
|
|
102
|
+
|
|
103
|
+
**7 expert personas** for AI-powered code review:
|
|
104
|
+
|
|
105
|
+
| Persona | Domain |
|
|
106
|
+
|---------|--------|
|
|
107
|
+
| `security-reviewer` | OWASP, auth, injection |
|
|
108
|
+
| `architecture-reviewer` | SOLID, API design, coupling |
|
|
109
|
+
| `code-quality-reviewer` | Readability, complexity, DRY |
|
|
110
|
+
| `performance-reviewer` | Memory, CPU, I/O, scalability |
|
|
111
|
+
| `database-reviewer` | Query optimization, schema, indexing |
|
|
112
|
+
| `frontend-reviewer` | React, accessibility, performance |
|
|
113
|
+
| `devops-reviewer` | K8s, IaC, CI/CD |
|
|
114
|
+
|
|
115
|
+
## Creating Your Own Skills Repo
|
|
116
|
+
|
|
117
|
+
You can create your own skills repository that `agt` discovers automatically:
|
|
118
|
+
|
|
119
|
+
```
|
|
120
|
+
my-skills/
|
|
121
|
+
├── agents/
|
|
122
|
+
│ └── my-agent/
|
|
123
|
+
│ └── SKILL.md
|
|
124
|
+
├── development/
|
|
125
|
+
│ └── my-tool/
|
|
126
|
+
│ └── SKILL.md
|
|
127
|
+
├── personas/
|
|
128
|
+
│ └── my-reviewer/
|
|
129
|
+
│ └── PERSONA.md
|
|
130
|
+
├── profiles.yml
|
|
131
|
+
├── agt.toml
|
|
132
|
+
└── README.md
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
# Others install from your repo
|
|
137
|
+
agt skill install --from you/my-skills
|
|
138
|
+
agt persona install --from you/my-skills
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
See [full documentation](https://github.com/open330/agt) for SKILL.md format, PERSONA.md format, profiles.yml, and agt.toml specifications.
|
|
142
|
+
|
|
143
|
+
## Platform Support
|
|
144
|
+
|
|
145
|
+
| Platform | Architecture |
|
|
146
|
+
|----------|-------------|
|
|
147
|
+
| macOS | arm64 (Apple Silicon), x64 (Intel) |
|
|
148
|
+
| Linux | x64, arm64 |
|
|
149
|
+
|
|
150
|
+
Binary is automatically downloaded during `npm install`. If the optional platform package fails, a fallback download from GitHub Releases is attempted.
|
|
151
|
+
|
|
152
|
+
## Links
|
|
153
|
+
|
|
154
|
+
- **GitHub**: [open330/agt](https://github.com/open330/agt)
|
|
155
|
+
- **Skills Repository**: [jiunbae/agent-skills](https://github.com/jiunbae/agent-skills)
|
|
156
|
+
- **Issues**: [Report bugs](https://github.com/open330/agt/issues)
|
|
157
|
+
|
|
158
|
+
## License
|
|
159
|
+
|
|
160
|
+
MIT
|
package/bin/agt
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open330/agt",
|
|
3
|
-
"version": "2026.3.
|
|
3
|
+
"version": "2026.3.19",
|
|
4
4
|
"description": "agt — A modular toolkit for extending AI coding agents",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agt": "bin/agt.js"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"postinstall": "node scripts/postinstall.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@open330/agt-darwin-arm64": "2026.3.
|
|
13
|
-
"@open330/agt-darwin-x64": "2026.3.
|
|
14
|
-
"@open330/agt-linux-x64": "2026.3.
|
|
15
|
-
"@open330/agt-linux-arm64": "2026.3.
|
|
12
|
+
"@open330/agt-darwin-arm64": "2026.3.18",
|
|
13
|
+
"@open330/agt-darwin-x64": "2026.3.18",
|
|
14
|
+
"@open330/agt-linux-x64": "2026.3.18",
|
|
15
|
+
"@open330/agt-linux-arm64": "2026.3.18"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
Binary file
|