CoolFace
Apppublic

pathmode/intent-preflight

sourceHugging Faceupdated 2d agoView on Hugging Face
0likes
README.md46 linesDownload Raw Back to root
1---2title: Intent Preflight3emoji: 🧭4colorFrom: green5colorTo: gray6sdk: static7app_file: index.html8pinned: false9short_description: Find the decisions your coding agent would have to guess.10tags:11  - coding-agents12  - intent-engineering13  - developer-tools14---15 16# Intent Preflight by Pathmode17 18**What will your coding agent have to guess?** Paste a brief, ticket, Markdown IntentSpec, or JSON spec and check six dimensions of implementation readiness. Compare a weak checkout brief with a stronger version, inspect what the checker read, edit it, and download the exact input.19 20This static Space runs entirely in your browser. It has no inference API, analytics, storage, or upload endpoint. A Content Security Policy blocks outbound connections. Reloading the page clears edits.21 22## How it works23 24The build imports Pathmode's existing web preflight parser (`lib/specProseExtract.ts`), MCP readiness engine (`packages/mcp-server/src/readiness.ts`), synthetic demo fixtures, and canonical IntentSpec serializer. The six checks cover title, objective, outcomes, constraints, edge cases, and verification. Recorded unresolved product choices are reported separately.25 26“Needs review” means the English-language heuristics could not confirm extracted text; it does not establish that the text is wrong. Confirmations and waivers are reported as self-asserted, not authenticated here. A passing check does not prove product value, implementation quality, or authorization to build. The examples are synthetic demonstrations, not a performance benchmark.27 28Downloads preserve the original input, including any existing metadata. They do not approve, rewrite, or update a readiness stamp in that input. Re-run preflight through the MCP server before implementation.29 30## Continue with Pathmode31 32- [Set up the MCP server](https://github.com/pathmodeio/mcp-server#readme)33- [IntentSpec example dataset](https://huggingface.co/datasets/pathmode/intentspec-examples)34- [Pathmode](https://pathmode.io)35 36## Build from the Pathmode repository37 38```sh39node apps/huggingface-preflight/build.mjs40npx tsc -p apps/huggingface-preflight/tsconfig.json --noEmit41npx vitest run apps/huggingface-preflight/ lib/preflightReadinessParity.test.ts lib/intentMdParseParity.test.ts42python3 -m http.server 7860 --directory apps/huggingface-preflight/dist43```44 45Upload only the contents of `apps/huggingface-preflight/dist/` into a Static Hugging Face Space. Do not upload the application repository, environment files, or unrelated assets. Rebuild and rerun parity tests when shared readiness logic changes.46