@lizmotia/ag-kit
v0.1.1
Published
Antigravity-inspired skills, agents, and workflows packaged for OpenAI Codex.
Maintainers
Readme
AG Kit
Portable Codex skills, specialist agents, workflows, and helper scripts packaged as one installable bundle.
@lizmotia/ag-kit installs a project-local .agents directory so OpenAI Codex can discover the same operating system across projects.
Install
Run once inside the target project:
npx @lizmotia/ag-kit initOr install globally:
npm install -g @lizmotia/ag-kit
ag-kit initUpdate an existing installation:
npx @lizmotia/ag-kit updateIf you explicitly want to overwrite .agents with init, this is equivalent:
npx @lizmotia/ag-kit init --forceLocal development path:
node ./bin/ag-codex.js init --path ../my-projectCompatibility alias:
ag-codex initWhat It Installs
The CLI copies a portable .agents tree into the target project root.
That bundle currently includes:
| Component | Count | Purpose |
|---------|------:|---------|
| Agents | 20 | Specialist execution roles such as frontend, backend, security, QA, and planning |
| Skills | 96 top-level / 106 total SKILL files | Codex-readable guidance, patterns, checklists, and domain playbooks |
| Workflows | 11 | Entry workflows like brainstorm, create, debug, plan, and test |
| Scripts | 17 | Shared helpers for verification, preview, stale checks, health checks, load order, preview, checklist, and session tasks |
Core Idea
AG Kit is designed for Codex skills, not custom slash-command runtimes.
- Use
$brainstorm,$create,$debug,$plan,$test, and related skills inside Codex. - Keep
.agents/at the project root so Codex can discover it. - Use one portable package instead of manually copying prompts and helper files between repositories.
Typical Flow
- Install
.agentsinto a project. - Open that project in VS Code.
- Switch to the
CODEXtab. - Reload the window or run
Force reload skills. - Invoke skills with
$.
Examples:
$brainstorm auth system for a SaaS dashboard
$create landing page for a skincare brand
$debug why login returns 500
$plan migrate this app from REST to tRPC
$clean-code review this module before shipping
$ui-ux-pro-max redesign the homepageIf someone clones this repository directly, .agents/ is already included. They only need to:
- Open the repo root in VS Code.
- Switch to the
CODEXtab. - Reload the window or run
Force reload skills. - Start invoking skills with
$.
CLI
| Command | Description |
|---------|-------------|
| ag-kit init | Install .agents into the current directory |
| ag-kit init --path ./my-project | Install into a specific directory |
| ag-kit update | Reinstall and overwrite the existing .agents folder |
| ag-kit init --force | Overwrite an existing .agents installation during init |
| ag-kit status | Show whether .agents is installed and summarize its contents |
| ag-kit help | Show usage information |
Package Scope
The published npm package is:
@lizmotia/ag-kitThe repository also keeps ag-codex as a CLI alias for compatibility, but ag-kit is the primary command going forward.
Updating Existing Projects
Use update when .agents is already installed and you want the latest package contents:
npx @lizmotia/ag-kit updateIf you just published a new package version and want to avoid stale npx cache, prefer:
npx @lizmotia/ag-kit@latest updateGlobal install equivalent:
ag-kit updateinit --force is supported, but update is the clearer command for refreshes because it makes the overwrite behavior explicit.
Repository Layout
.
|-- .agents/
| |-- agents/
| |-- skills/
| |-- workflows/
| |-- scripts/
| `-- .shared/
|-- bin/ag-codex.js
|-- AGENT_FLOW.md
|-- PUBLISHING.md
|-- SKILLS_AND_WORKFLOWS.md
|-- SKILLS_AND_WORKFLOWS_TH.md
|-- README.md
`-- README(th).mdPublished Scope
The npm package is intentionally limited to the portable runtime:
.agents/bin/AGENT_FLOW.mdPUBLISHING.mdUPDATELIST.mdSKILLS_AND_WORKFLOWS.mdSKILLS_AND_WORKFLOWS_TH.mdREADME.mdREADME(th).mdLICENSEpackage.json
Local-only compatibility files are excluded from the published package.
GitHub Push Notes
These files should ship:
.agents/bin/README.mdREADME(th).mdUPDATELIST.mdSKILLS_AND_WORKFLOWS.mdSKILLS_AND_WORKFLOWS_TH.mdAGENT_FLOW.mdPUBLISHING.mdLICENSEpackage.json.npmignore
These should stay local-only and are ignored:
.agent/plugins/.agents/plugins/h4cker/awesome-design-md/- local audit and scratch reports
Docs
- Agent Flow
- Publishing Guide
- Update List
- Skills and Workflows Catalog
- Skills and Workflows Catalog (Thai)
License
MIT
