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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
470 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://vault-pro-x402.fly.dev/api/scaffold-project
| Category | Everything else |
|---|---|
| Provider host | vault-pro-x402.fly.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 18 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 470 ms |
Example input (from the provider)
{
"body": {
"goal": "Launch a permissioned customer-research sprint with five interviews"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}