This site is private. Enter the password to continue.
Ark is distributed as an npm package. Install it globally or use npx to run commands directly.
$ npm install -g ark-pm # Or use npx (no install needed) $ npx ark-pm search voice
Search the registry from your terminal. Every package shows its audit score and price.
$ ark search voice voice-writer agent 75 Free Writes in your authentic voice daily-recap skill 78 Free End-of-day summary $ ark install voice-writer ✓ Installed in ~/.ark/packages/voice-writer/
getark.dev, then install with ark install package-name --code ARK-XXXX.
Got a skill, agent, or system you want to publish? Start with ark init in your project directory.
$ cd my-agent/ $ ark init ✓ Created ark.json $ cat ark.json
This creates a manifest file describing your package:
{
"name": "my-agent",
"version": "1.0.0",
"type": "agent",
"category": "creative",
"description": "...",
"platforms": ["claude-code"],
"author": {
"name": "Your Name",
"email": "you@example.com"
}
} Before publishing, run the audit to see your score. Ark evaluates 6 dimensions:
| Dimension | Points | What it measures |
|---|---|---|
| Structure | 20 | ark.json, file organization, installer |
| Security | 20 | No secrets, permissions, injection safety |
| Code Quality | 20 | Syntax, error handling, documentation |
| Completeness | 15 | All components present and documented |
| Robustness | 15 | Error recovery, idempotence, compat |
| Value | 10 | Originality, domain depth (full mode) |
$ ark audit --static Structure 18/20 Security 17/20 Code Quality 15/20 Completeness 12/15 Robustness 11/15 ───────────────────────── Total 73/100 ✓ Certified Price range: $35 — $49
Once your score is 60 or above, submit to the registry. Packages go through manual review (24-48h) before appearing on the marketplace.
$ ark publish ✓ Archive created (12.4 KB) ✓ Audit report attached (score: 73) ✓ Submitted to registry Review takes 24-48h. We'll email you.
Now that you know the basics: