A toolkit your agent
already knows how to use.
Every AppLighter template ships with skills and slash commands for the work agents do over and over. Tested recipes, not improvised guesses. Run them in Claude Code, Codex, OpenCode, or Cursor.
Agents guess.
Tested recipes don’t.
An agent without a toolkit is an agent improvising. It re-derives where the auth lives, re-invents how the payment provider should plug in, re-decides which way to wire a new screen. Each guess burns context and creates drift.
A skill is a tested recipe an agent can run. /add-screen means “here’s exactly how this codebase adds a screen — same patterns, same conventions, same tests.” Less drift. Faster shipping. Smaller diffs.
Templates ship with the toolkit pre-installed. You get the foundation and the way to extend it consistently.
18 commands.
6 categories.
Extend
Migrate
Verify
Brand
Ship
AI
One folder.
Many agents.
Each skill is a single Markdown file with a tested prompt and step list. The same skill compiles to a Claude Code command, a Codex skill, an OpenCode workflow, and a Cursor rule. Write once, run anywhere.
- →Version-controlled in the repo
- →Tested against multiple models
- →Editable — fork and adapt for your team
- →Shareable — commit a new skill, PR it back
---
name: add-screen
description: Scaffold a new screen
args: ["name"]
---
# Add a new screen named {{name}}
1. Create app/{{name}}.tsx with the
standard layout from components/layouts.
2. Register the route in app/_layout.tsx
following the existing order.
3. Wire state via lib/state/use{{Name}}()
following the hook pattern.
4. Add a placeholder test in
tests/screens/{{name}}.test.tsx.
5. Run pnpm typecheck & pnpm test.
## Don't
- Don't introduce a new state library.
- Don't bypass the layout component.
- Don't skip the test file.Configured for every agent
in the repo.
No setup. Clone the repo, open it in your agent, the commands appear.
Share a skill.
Earn the credit.
The toolkit grows with the community. Found a recipe that works for your team? PR it. We review, test against multiple agents, and ship it in the next release. Your name on the changelog.
- NEW/test-promptsby @priya
- UPD/swap-backend+ Neon adapter
- NEW/add-ai-featureby @adit
- UPD/audit-security+ OWASP-25 checks
- NEW/ota-updateby @core
The toolkit ships with
every template.
Buy any template. Get all 18 commands. Get every command added next month, automatically.