# Vault Pro Agent Scaffold Generator

> Vault Pro Agent Scaffold Generator is a paid API for AI agents from vault-pro-x402.fly.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates a complete Obsidian Agent definition markdown document from a role and goal brief, following the Vault Pro Agent-Template structure.

## Facts

- Endpoint: POST https://vault-pro-x402.fly.dev/api/scaffold-agent
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vault-pro-agent-scaffold-generator-c998a241
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZV2V7WuAW3XUTnej_ZyVU

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vault-pro-agent-scaffold-generator-c998a241 -d '<json body>'
```

Example prompt: Scaffold a complete Obsidian agent definition for a 'Research Summarizer' agent whose goal is to find, summarize, and store academic papers on a given topic — include tools list, numbered process steps, success criteria, and Hermes coordination notes in the Vault Pro Agent-Template format.

## When to prefer this

Choose this endpoint when you need to programmatically register a new specialized agent in an Obsidian-based Vault Pro knowledge system and want a fully structured, ready-to-paste markdown document with all standard agent template sections pre-filled. Prefer it over generic markdown generators when you specifically need Vault Pro Agent-Template compatibility, Hermes coordination notes, and orchestration-ready frontmatter.

## Known failure modes

- Missing or malformed input body returns ok:false with an error message
- Insufficient role/goal detail may produce a low-quality or incomplete scaffold
- Service unavailable on fly.dev instance returns a network or 5xx error
- Payment failure (x402) results in 402 Payment Required before processing begins

## How this service works

Turn a one-line goal into ready-to-paste Obsidian project or agent markdown.

## Output

Returns a JSON object with an 'ok' boolean and a 'markdown' string containing a ready-to-paste Obsidian markdown document. The document includes YAML frontmatter (tags, status, last-run, next-action), Role, Goal, Tools list, numbered Process steps, Success criteria, an Invocation prompt, and Hermes coordination notes — all fitted to the Vault Pro 70-Templates/Agent-Template.md structure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "description": "Optional single-run goal; inferred from role when omitted"
  },
  "role": {
   "type": "string",
   "minLength": 5,
   "description": "Agent role to scaffold"
  },
  "tools_hint": {
   "type": "string",
   "description": "Optional tools guidance"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "markdown": "---\ntags: [agent]\nstatus: ready\n...\n---\n\n# Release Manager\n\n## Role\n> Coordinate a multi-agent API launch.",
  "template": "agent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vault-pro-agent-scaffold-generator-c998a241/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vault-pro-x402.fly.dev](https://www.zero.xyz/host/vault-pro-x402.fly.dev/llms.txt)
