# Vault Pro Obsidian Project Plan Scaffolder

> Vault Pro Obsidian Project Plan Scaffolder 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-13).

Generates a complete Obsidian-formatted project plan markdown document from a one-line brief, including frontmatter, goals, success criteria, scope, and a task decomposition table.

## Facts

- Endpoint: POST https://vault-pro-x402.fly.dev/api/scaffold-project
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vault-pro-obsidian-project-plan-scaffolder-191aa652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D0CX8AdNlPq4zlumBpL9z

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-obsidian-project-plan-scaffolder-191aa652 -d '<json body>'
```

Example prompt: Scaffold a full Obsidian project plan for my brief: 'Launch a podcast on AI productivity tools by Q3' — I need frontmatter with status, priority, owner, and deadline, plus goals, success criteria, in/out scope, and a decomposition table with tasks, agents, and outputs in Vault Pro's Project-Template.md format.

## When to prefer this

Choose this endpoint when you need a structured, Obsidian-compatible project plan document generated from a short natural language brief, especially when using the Vault Pro template ecosystem. Ideal for AI agents that manage Obsidian vaults and need to bootstrap project planning artifacts without manual template filling.

## Known failure modes

- Empty or missing 'brief' body results in an error response with ok:false and an error message
- Malformed JSON body returns a 400-level error
- Service unavailability on fly.dev returns a 5xx error
- Payment of $0.05 USDC not provided or rejected via x402 protocol results in a 402 Payment Required response

## How this service works

Scaffold a complete Obsidian Project plan from a one-line brief. Returns a markdown document with: frontmatter (status, priority, owner, deadline), Goal, Success criteria checklist, Why now, In/Out scope, and a 3-7 row Decomposition table with tasks/agents/outputs. Fitted to the Vault Pro 70-Templates/Project-Template.md structure. Useful for AI agents that need to break down a goal into concrete planning artifacts.

## Output

Returns a JSON object with an 'ok' boolean and a 'markdown' string containing a ready-to-paste Obsidian markdown document. The document follows the Vault Pro 70-Templates/Project-Template.md structure with YAML frontmatter (status, priority, owner, deadline), Goal section, Success Criteria checklist, Why Now narrative, In/Out Scope definitions, and a 3-7 row Decomposition table mapping tasks to agents and expected outputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "goal": {
   "type": "string",
   "minLength": 8,
   "description": "Project goal to scaffold"
  },
  "owner": {
   "type": "string",
   "description": "Optional project owner"
  },
  "context": {
   "type": "string",
   "description": "Optional supporting context"
  },
  "deadline": {
   "type": "string",
   "description": "Optional project deadline"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "markdown": "---\ntags: [project]\nstatus: planning\npriority: P1\n...\n---\n\n# Customer Research Sprint\n\n## Goal\n> Complete five permissioned customer interviews and synthesize findings.\n\n## Success criteria\n- [ ] Five interviews completed\n- [ ] Findings synthesized",
  "template": "project"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vault-pro-obsidian-project-plan-scaffolder-191aa652/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)
