🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@open330/agt

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open330/agt

agt — A modular toolkit for extending AI coding agents

Source
npmnpm
Version
2026.3.21
Version published
Weekly downloads
13
Maintainers
1
Weekly downloads
 
Created
Source

agt

A modular toolkit for extending AI coding agents (Claude Code, Codex CLI, Gemini CLI)

npm GitHub License

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.

Quick Start

# No install needed — use npx
npx @open330/agt skill install --profile core
npx @open330/agt persona install -g --from jiunbae/agent-skills

# Or install globally
npm install -g @open330/agt
agt skill install --profile core
agt persona install -g --all

Commands

agt skill — Skill Management

agt skill install kubernetes-skill        # Install to current workspace
agt skill install -g git-commit-pr        # Install globally
agt skill install --profile core          # Install a profile (curated set)
agt skill install --from user/repo        # Install from a remote skills repo
agt skill list                            # List all available skills
agt skill list --installed                # Show installed only
agt skill update                          # Update all remote-installed skills
agt skill uninstall kubernetes-skill      # Remove a skill

agt persona — Persona Management

agt persona list                                  # List personas
agt persona install -g security-reviewer          # Install globally
agt persona install -g --all                      # Install all personas
agt persona create rust-expert --ai "Rust unsafe" # AI-generated persona
agt persona review security-reviewer              # Run code review with persona
agt persona review security-reviewer --codex      # Use Codex CLI
agt persona show security-reviewer                # View persona details

agt run — Skill Execution

agt run "scan for security issues"              # Auto skill matching
agt run --skill security-auditor "scan"         # Specify skill explicitly

agt hook — Hook Management

agt hook install english-coach                  # Install a hook
agt hook list                                   # List available hooks

agt team — Multi-Agent Teams

agt team run review                             # Run a team of agents
agt team list                                   # List available teams

Core Skills

Installed by default with --profile core:

SkillDescription
git-commit-prGit commit & PR guide with security validation
context-managerProject context auto-loader
static-indexGlobal static context index
security-auditorRepository security audit
background-implementerParallel multi-LLM implementation
background-plannerParallel multi-LLM planning
background-reviewerMulti-LLM parallel code review

Skills Catalog

33 skills across 8 categories:

CategorySkills
Agentsbackground-implementer, background-planner, background-reviewer
Developmentcontext-worktree, git-commit-pr, iac-deploy-prep, multi-ai-code-review, playwright, pr-review-loop, task-master
Businessbm-analyzer, document-processor, proposal-analyzer
Integrationsappstore-connect, discord, google-search-console, kubernetes, notion-summary, obsidian-tasks, obsidian-writer, service-manager, slack, vault-secrets
ML/AIaudio-processor, ml-benchmark, model-sync, triton-deploy
Securitysecurity-auditor
Contextcontext-manager, static-index
Metakarpathy-guide, skill-manager, skill-recommender

Personas

7 expert personas for AI-powered code review:

PersonaDomain
security-reviewerOWASP, auth, injection
architecture-reviewerSOLID, API design, coupling
code-quality-reviewerReadability, complexity, DRY
performance-reviewerMemory, CPU, I/O, scalability
database-reviewerQuery optimization, schema, indexing
frontend-reviewerReact, accessibility, performance
devops-reviewerK8s, IaC, CI/CD

Creating Your Own Skills Repo

You can create your own skills repository that agt discovers automatically:

my-skills/
├── agents/
│   └── my-agent/
│       └── SKILL.md
├── development/
│   └── my-tool/
│       └── SKILL.md
├── personas/
│   └── my-reviewer/
│       └── PERSONA.md
├── profiles.yml
├── agt.toml
└── README.md
# Others install from your repo
agt skill install --from you/my-skills
agt persona install --from you/my-skills

See full documentation for SKILL.md format, PERSONA.md format, profiles.yml, and agt.toml specifications.

Platform Support

PlatformArchitecture
macOSarm64 (Apple Silicon), x64 (Intel)
Linuxx64, arm64

Binary is automatically downloaded during npm install. If the optional platform package fails, a fallback download from GitHub Releases is attempted.

License

MIT

Keywords

agent

FAQs

Package last updated on 18 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts