Codex-native Kaspa engineering skill with cross-platform adapters for OpenAI, Claude, Cursor, OpenClaw, Gemini CLI, and generic LLM workflows.
This repository publishes a reusable AI skill package for serious Kaspa engineering.
- Skill ID:
$kaspa-sovereign-architect-engine - Main skill file:
SKILL.md - Release downloads: GitHub Releases
- Positioning: package-first distribution (not a website product)
$kaspa-sovereign-architect-engine focuses on:
- Protocol engineering: BlockDAG, GHOSTDAG, mempool, UTXO semantics
- Indexer architecture: DAG-aware indexing, conflict handling, consistency flows
- Backend reliability: APIs, workers, retries, caching, validation, observability
- Wallet + UX: wallet-aware transaction lifecycle and confirmation state UX
- Security rigor: threat modeling, key boundaries, replay and double-spend controls
Use the skill name in your prompt:
$kaspa-sovereign-architect-engine
Design a production-ready Kaspa indexer + API with retry-safe workers and monitoring.
Or embed it directly:
Use $kaspa-sovereign-architect-engine to audit my wallet backend for replay, nonce, and signing risks.
| Platform | Status | Adapter |
|---|---|---|
| Codex | β Native | SKILL.md |
| OpenAI-style agents | β Adapter | agents/openai.yaml |
| Claude / Anthropic | β Adapter | agents/anthropic.md |
| Cursor | β Adapter | agents/cursor.mdc |
| OpenClaw | β Adapter | agents/openclaw.md |
| Gemini CLI | β Adapter | agents/gemini.md |
| Any LLM platform | β Adapter | agents/generic-system-prompt.md |
Compatibility metadata:
Automated verification:
- Compatibility Matrix workflow
- Release gating validation is enforced in
.github/workflows/release-skill.yml
mkdir -p "$CODEX_HOME/skills"
curl -L -o /tmp/kaspa-sovereign-architect-engine.zip \
https://github.com/gryszzz/Top-Ai-Agent-Developer-For-Kaspa/releases/latest/download/kaspa-sovereign-architect-engine.zip
unzip -o /tmp/kaspa-sovereign-architect-engine.zip -d "$CODEX_HOME/skills"Verify artifact integrity:
curl -L -o /tmp/SHA256SUMS.txt \
https://github.com/gryszzz/Top-Ai-Agent-Developer-For-Kaspa/releases/latest/download/SHA256SUMS.txt
(cd /tmp && grep "kaspa-sovereign-architect-engine.zip$" SHA256SUMS.txt | shasum -a 256 -c -)Alternative tarball install:
curl -L -o /tmp/kaspa-sovereign-architect-engine.tar.gz \
https://github.com/gryszzz/Top-Ai-Agent-Developer-For-Kaspa/releases/latest/download/kaspa-sovereign-architect-engine.tar.gz
tar -xzf /tmp/kaspa-sovereign-architect-engine.tar.gz -C "$CODEX_HOME/skills"mkdir -p "$CODEX_HOME/skills/public"
cp -R skills/public/kaspa-sovereign-architect-engine "$CODEX_HOME/skills/public/"macOS/Linux:
./skills/public/kaspa-sovereign-architect-engine/scripts/install-codex.shWindows PowerShell:
.\skills\public\kaspa-sovereign-architect-engine\scripts\install-codex.ps1Export adapter bundle:
./skills/public/kaspa-sovereign-architect-engine/scripts/export-adapters.shOpenClaw loads AgentSkills-compatible folders from ~/.openclaw/skills or <workspace>/skills.
Install globally for OpenClaw (macOS/Linux):
./skills/public/kaspa-sovereign-architect-engine/scripts/install-openclaw.shInstall manually into an OpenClaw workspace:
mkdir -p ./skills
cp -R skills/public/kaspa-sovereign-architect-engine ./skills/Gemini CLI loads context from ~/.gemini/GEMINI.md and supports @ imports.
Install adapter globally (macOS/Linux):
./skills/public/kaspa-sovereign-architect-engine/scripts/install-gemini.shManual install:
mkdir -p ~/.gemini
cp skills/public/kaspa-sovereign-architect-engine/agents/gemini.md ~/.gemini/kaspa-sovereign-architect-engine.gemini.md
printf "\n@%s\n" "$HOME/.gemini/kaspa-sovereign-architect-engine.gemini.md" >> ~/.gemini/GEMINI.md- Open an adapter file from
agents/. - Copy its contents into your platform's system/developer instructions.
- Add your actual task prompt.
Example task prompt:
Design a Kaspa DAG-aware indexer for 100k users with failure recovery and replay-safe event handling.
- Download packages: Releases
- Automated packaging workflow:
.github/workflows/release-skill.yml
- Auto-deploy workflow:
.github/workflows/pages.yml - GitHub Pages landing page: Live Site
- Custom domain support: set repo variable
GH_PAGES_CNAME(for exampleskill.yourdomain.com); workflow writesCNAMEautomatically - Domain setup guide:
docs/domain-setup.md - Launch copy + channel templates:
docs/launch-kit.html - SEO files:
docs/robots.txt,docs/sitemap.xml - Scaling runbook:
docs/scaling-plan.md
skills/public/kaspa-sovereign-architect-engine/- core skill packagetraining-corpus/kaspa-pdf-markdown/- normalized Kaspa corpuskaspa-balance-api/- production-oriented Kaspa API samplekaspa-codex-evolution-loop/- autonomous iteration framework