Scaffold a complete Obsidian Project plan from a one-line brief
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.
50000 (raw units)
price
18
calls / 30d
2
unique payers
2026-09-12
updated
Provider
vault-pro-x402.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xfBC0eb7811D477E55261d956dF39f0046E192240",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"goal": "Launch a permissioned customer-research sprint with five interviews"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"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",
"ok": true,
"template": "project"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"context": {
"description": "Optional supporting context",
"type": "string"
},
"deadline": {
"description": "Optional project deadline",
"type": "string"
},
"goal": {
"description": "Project goal to scaffold",
"minLength": 8,
"type": "string"
},
"owner": {
"description": "Optional project owner",
"type": "string"
}
},
"required": [
"goal"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"error": {
"type": "string"
},
"markdown": {
"description": "Ready-to-paste Obsidian markdown",
"type": "string"
},
"ok": {
"type": "boolean"
},
"template": {
"type": "string"
}
},
"required": [
"ok"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://vault-pro-x402.fly.dev/api/scaffold-project" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vault-pro-x402.fly.dev/api/scaffold-project");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://vault-pro-x402.fly.dev/api/scaffold-project")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14194.json, and this resource appears in /discovery/resources and /discovery/search.