AI assistant (Cursor, Codex, Gemini)
Teach your editor how to write Resuma — reactive view!, Flow routes, server actions, and common pitfalls — with one CLI command.
Skill vs MCP — which one?
| Agent skill (recommended) | MCP server | |
|---|---|---|
| Best for | Writing & fixing Resuma code in any project | Tools that call APIs, DBs, or live runtime state |
| Setup | resuma install skill | Custom server + editor MCP config (not bundled yet) |
| Editors | Cursor, Codex/agents, any SKILL.md-compatible agent | Cursor, Claude Desktop, etc. |
Start with the skill. It encodes Resuma patterns (signals, Show, Flow, #[server]) so the model ships working apps faster. An official Resuma MCP may come later for docs search and resuma routes --generate as tools.
Install the skill (one command)
# Global — available in all projects (Cursor)
resuma install skill
# Only this repo / monorepo
resuma install skill --project
# Codex-style agents path (~/.agents/skills/)
resuma install skill --target agents
# Cursor + agents
resuma install skill --target all
# See paths without writing
resuma install skill --list
# Overwrite existing SKILL.md
resuma install skill --forceWhere files land
~/.cursor/skills/resuma/SKILL.md— Cursor personal skill.cursor/skills/resuma/SKILL.md— committed with your app (team shares the same guidance)~/.agents/skills/resuma/SKILL.md— compatible with open agent skills ecosystems
Gemini / other editors
Copy SKILL.md from resuma install skill --list into your editor's rules or instructions file, or run resuma install skill --project and point the editor at .cursor/skills/resuma/SKILL.md.
What the skill covers
{signal}vs{signal.get()}inview!(client reactivity)- Reactive
<Show when={…}> FlowApp, file-based pages,resuma routes --generate#[server],#[submit],#[load]SeoKitand auto/robots.txt//llms.txt- Debugging checklist (core preload, handler chunks, CSRF)
Verify
resuma doctor
# In Cursor: ask "create a Resuma counter with view! and signal"
# The agent should use {count} not {count.get()} in the template.