Instructions

How to install any agent.

Every agent on AgentDash exports to eight formats. Pick one that matches your tool, click Install, and drop the file in. No SDK, no config wrangling.

The quick path

  1. 01Browse the catalog and click into an agent.
  2. 02Click Install and pick the format that fits your tool.
  3. 03Save the downloaded file or copy the contents.
  4. 04Drop into your tool's prompt slot. Done.

Per-tool guides

Pick your tool.

Claude Code

format: claude-code

.md file with YAML frontmatter, ready for ~/.claude/agents/ (per-user) or .claude/agents/ (per-project).

  1. 01Pick an agent and click Install → Claude Code subagent.
  2. 02Save the downloaded .md file to ~/.claude/agents/<slug>.md.
  3. 03Restart Claude Code or run /agents to see the new subagent.
  4. 04Invoke with @<slug> in any prompt, or let Claude pick automatically.

OpenAI Assistants API

format: openai-assistant

JSON payload that maps directly to the OpenAI Assistants v2 create endpoint.

  1. 01Pick an agent and click Install → OpenAI Assistant JSON.
  2. 02POST the JSON to https://api.openai.com/v1/assistants with your API key.
  3. 03Use the returned assistant_id to create threads and runs.
  4. 04Capabilities like code_interpreter are pre-toggled where the agent calls for them.

ChatGPT Custom GPT

format: chatgpt-gpt

Markdown bundle with the instructions block, suggested starters, and capability toggles.

  1. 01Pick an agent and click Install → ChatGPT Custom GPT.
  2. 02In ChatGPT, open Create a GPT → Configure.
  3. 03Paste the contents of the Instructions section into the Instructions field.
  4. 04Add the suggested conversation starters and toggle the recommended capabilities.

Cursor

format: cursor

.cursorrules file Cursor reads from your project root.

  1. 01Pick an agent and click Install → Cursor rules.
  2. 02Drop the .cursorrules file in your project root.
  3. 03Cursor picks it up automatically on next open.
  4. 04For per-language overrides, prefix with a section comment.

n8n

format: n8n

JSON node ready to drop into an n8n workflow.

  1. 01Pick an agent and click Install → n8n workflow node.
  2. 02In n8n, paste the JSON into your workflow (Cmd-V on the canvas).
  3. 03Connect a trigger upstream and downstream nodes as needed.
  4. 04Set your OpenAI credentials on the node.

Zapier

format: zapier

Pre-formatted prompt block for the AI step in any Zap.

  1. 01Pick an agent and click Install → Zapier prompt block.
  2. 02Add an AI step (OpenAI / ChatGPT / Anthropic) to your Zap.
  3. 03Paste the System prompt section into the System Instructions field.
  4. 04Use {{trigger.input}} as the user message template.

Anywhere else (system prompt only)

format: system-prompt

Plain text. Paste it into anything that takes a system prompt.

  1. 01Pick an agent and click Install → System prompt only.
  2. 02Paste the text wherever your tool accepts a system or instruction prompt.
  3. 03Configure the recommended model on your side.

Workflows

Chain two or more.

Build a pipeline at /dashboard/workflows/new. Pick agents in order, map outputs to the next step's input, export the chain as a Claude Code workflow doc, an n8n importable, or a Markdown spec.

Stuck?

Check the FAQ or email hello@agentdashapp.com.