An open API service indexing awesome lists of open source software.

https://github.com/mizcausevic-dev/ai-procurement-decision-landing

Landing site for the AI Procurement Decision Card spec (Kinetic Gain Protocol Suite #11). Static HTML, deploys to decisions.kineticgain.com.
https://github.com/mizcausevic-dev/ai-procurement-decision-landing

ai-governance ai-procurement decision-intelligence kinetic-gain-protocol-suite landing-page procurement

Last synced: 3 days ago
JSON representation

Landing site for the AI Procurement Decision Card spec (Kinetic Gain Protocol Suite #11). Static HTML, deploys to decisions.kineticgain.com.

Awesome Lists containing this project

README

          

# ai-procurement-decision-landing

Static landing site for the **[AI Procurement Decision Card spec](https://github.com/mizcausevic-dev/ai-procurement-decision-spec)** — spec #11 (cross-cutting, buyer-side) of the [Kinetic Gain Protocol Suite](https://github.com/mizcausevic-dev/kinetic-gain-protocol-suite).

Live at **[decisions.kineticgain.com](https://decisions.kineticgain.com)**.

## What's here

```
.
├── index.html # the landing page
├── style.css # styles (indigo + slate palette)
├── .github/workflows/
│ └── deploy.yml # FTPS push to /decisions/ on Hostinger on push to main
└── README.md
```

No build step. Hand-written HTML + CSS so the page loads instantly and degrades cleanly without JS.

## Local preview

```bash
python3 -m http.server 8080
# open http://localhost:8080
```

## Deployment

Pushes to `main` trigger a GitHub Actions workflow that FTP-syncs the site root to `/decisions/` on Hostinger.

Required repo secrets:

| Secret | Description |
|---|---|
| `FTP_HOST` | Hostinger FTP server hostname |
| `FTP_USER` | Hostinger FTP username |
| `FTP_PASS` | Hostinger FTP password |

(Same values as every other landing repo in the Suite.)

## Related repositories

- **[ai-procurement-decision-spec](https://github.com/mizcausevic-dev/ai-procurement-decision-spec)** — the specification, JSON Schema, and three canonical example fixtures (EdTech district, HealthTech hospital, Federal agency)
- **[procurement-decision-api](https://github.com/mizcausevic-dev/procurement-decision-api)** — FastAPI service that drafts Decision Cards from a buyer rubric + vendor Suite documents
- **[policy-as-code-engine](https://github.com/mizcausevic-dev/policy-as-code-engine)** — turns a Decision Card's `conditions[]` into a runtime-enforceable PolicyBundle
- **[incident-correlation-rs](https://github.com/mizcausevic-dev/incident-correlation-rs)** — walks the Suite graph from an AI Incident Card, recommends Decision Card re-reviews
- **[mcp-decision-intelligence](https://github.com/mizcausevic-dev/mcp-decision-intelligence)** — read-only MCP server, 4 deterministic preview tools
- **[mcp-kinetic-gain](https://github.com/mizcausevic-dev/mcp-kinetic-gain)** — unified MCP server, every Suite spec as a tool
- **[kinetic-gain-visualizer](https://github.com/mizcausevic-dev/kinetic-gain-visualizer)** — unified visualizer; auto-detects via `decision_card_version`

## License

Apache-2.0. The underlying specification is MIT-licensed; reference implementations are AGPL-3.0.