Codex
Paste the packet as the next local coding-agent task. Codex can create files, update manifests, and report manual dashboard steps.
Paste the Codex handoff from /dashboard/workflows into this repo and follow the run order.Copy a workflow handoff packet into your coding agent today. The future MCP package will automate the same tool contract through one GoForAgent account and shared credits.
{
"mcpServers": {
"goforagent": {
"command": "npx",
"args": ["@goforagent/mcp@latest"],
"env": {
"GOFORAGENT_API_KEY": "gfa_xxx"
}
}
}
}`@goforagent/mcp` is the intended install contract, not a published dependency in this MVP. Use handoff packets first while the dashboard validates the mature tools.
Use today without MCP backend
The current product path is copy-first: generate a packet in `/dashboard/workflows`, paste it into Codex, Cursor, or Claude, then use Image, Remove BG, and Video dashboard routes as mature tools.
Paste the packet as the next local coding-agent task. Codex can create files, update manifests, and report manual dashboard steps.
Paste the Codex handoff from /dashboard/workflows into this repo and follow the run order.Paste the packet into Cursor chat while the target project is open. Cursor can turn it into repo tasks and asset placeholders.
Use this Cursor handoff to plan assets under public/assets/goforagent and return the manifest.Paste the packet into Claude Code or Claude Desktop with project context attached. Claude can keep the manifest synchronized.
Follow this Claude handoff, call mature tools manually today, and return paths plus follow-up.Future MCP gateway
Add the GoForAgent MCP server to the local Claude config and expose scoped tool calls inside project sessions.
Register GoForAgent in Cursor MCP settings so the editor agent can create assets while editing the repo.
Use the same command and API key in a local agent runtime that supports MCP server definitions.
When to automate
The MVP intentionally keeps MCP as a contract preview. GoForAgent should earn a backend worker when users repeatedly copy handoffs, open mature tools from workflows, and need credits or task status in one shared record.
Users choose workflow packs and copy handoffs more often than they use isolated tools.
The same users ask for automatic routing across Image, Remove BG, Video, and later Music or Speech.
Support and billing need to see which agent, pack, and tool consumed credits inside one workflow.
Users want one workflow job id, polling status, retries, and final manifest instead of separate dashboard runs.
Available tools
The first public registry stays narrow: three production dashboard tools plus broader catalog placeholders for the next MCP gateway phase.
agent_generate_image
Generate hero art, icons, product visuals, and landing page imagery.
/api/image/gpt-image-2-0/generate
dashboard liveagent_remove_background
Create transparent PNG assets from generated images, product photos, and portraits.
/api/image/remove-bg/generate
dashboard liveagent_generate_video
Generate short videos from prompts or reference images for launch and social assets.
/api/video/kling3/generate
dashboard liveagent_create_music
Create music tracks and audio ideas through the shared catalog.
/api/v1/audio/music
future gatewayagent_create_speech
Generate speech, voice, and narration assets for workflow packs.
/api/v1/audio/speech
future gatewayAgent calls
Use `/dashboard/workflows` today to copy a target-specific agent handoff, prompt, file manifest, or JSON preview. The later gateway can execute the same shape automatically.
Open workflow runnerThe current no-backend path: paste one target-specific packet into Codex, Cursor, Claude, or another local agent.
# GoForAgent workflow handoff
Target agent: Codex
Pack: Landing Page Asset Pack
Output folder: public/assets/goforagent/landing-page
Codex usage notes:
- Paste this packet as the next Codex task in the repo you want to update.
- Return repo-relative paths and a short verification note.
Project brief:
SaaS launch page for an AI meeting notes product
Run order:
1. Generate visual directions - agent_generate_image
2. Create transparent cutouts - agent_remove_background
3. Add launch motion - agent_generate_video
Acceptance checklist:
- Create or plan every file under the output folder.
- Return final file paths, status, and manual follow-up.The high-level workflow tool the agent gateway should expose first.
{
"tool": "agent_create_asset_pack",
"arguments": {
"pack": "landing-page",
"brief": "SaaS launch page for an AI meeting notes product",
"output_root": "public/assets/goforagent",
"output_format": "asset_manifest",
"tools": [
"agent_generate_image",
"agent_remove_background",
"agent_generate_video"
],
"expected_assets": [
{
"path": "public/assets/goforagent/landing-page/hero-16x9.webp",
"type": "Hero image",
"tool": "agent_generate_image"
},
{
"path": "public/assets/goforagent/landing-page/product-cutout.png",
"type": "Transparent PNG",
"tool": "agent_remove_background"
}
]
}
}The response shape agents can use before file download, zip packaging, or repo writes.
{
"pack": {
"id": "landing-page",
"title": "Landing Page Asset Pack"
},
"output_root": "public/assets/goforagent",
"assets": [
{
"path": "public/assets/goforagent/landing-page/hero-16x9.webp",
"type": "Hero image",
"tool": "agent_generate_image",
"status": "planned"
},
{
"path": "public/assets/goforagent/landing-page/product-cutout.png",
"type": "Transparent PNG",
"tool": "agent_remove_background",
"status": "planned"
}
]
}The single-tool fallback for Claude, Cursor, Codex, and local agents.
{
"tool": "agent_generate_image",
"arguments": {
"prompt": "Hero image for a practical AI developer tool landing page",
"aspect_ratio": "16:9",
"save_to": "public/images/hero.webp"
}
}