gitmyhub

ag-kit

TypeScript ★ 7.7k updated 1d ago

A one-command install that adds 20 AI agent personas, 45 knowledge modules, and 14 slash-command workflows to your project for Claude Code, Cursor, or Windsurf to use immediately.

TypeScriptNext.jsReactsetup: easycomplexity 2/5

AG Kit is a collection of templates that you install into a software project to give AI coding assistants like Claude Code, Cursor, or Windsurf a set of ready-made instructions. The package contains 20 specialist AI personas (agents focused on areas like frontend development, backend work, security, and testing), 45 knowledge modules called skills, and 14 slash commands called workflows that let you kick off common tasks by typing a short command in your AI chat.

You install it with one command in the terminal, which drops a hidden folder called .agent into your project. After that, when you open your project in an AI editor, those personas and commands become available. If you work across many projects, you can set up a single shared folder and link to it from each project using a symbolic link, so updates apply everywhere at once without copying files.

The most recent release added several features aimed at reducing how many tokens the AI processes per session. Tokens are roughly the amount of text the model reads and writes per request. A persistent memory file lets the AI remember your preferences and past decisions across separate sessions, so you do not have to re-explain them each time. A coordinator mode can run multiple AI agents on read-only work at the same time and then combine the results, which the README says can reduce retry cycles by roughly a third compared to the previous sequential approach.

Other additions include automatic context compression for long sessions, a skill that verifies code by actually running it rather than just reading it, and a command called skillify that turns a repeated workflow into a reusable skill automatically. The README notes tradeoffs: the .agent folder grows by about 40KB, the memory file adds roughly 1,000 tokens of overhead per session, and the coordinator features require an AI model that supports spawning sub-agents.

AG Kit works with Next.js 16 and React 19 patterns, and all templates from earlier versions continue to work with the new release without any changes.

Where it fits