Early Access · Standard certifications are free. 🛡️ SXM Hardened audits from $19.95.

For Skill Developers

How to get your AI skill certified, display your badge, and maintain certification over time.

Getting Your Skill Certified

New: Point us at your repo. We handle the rest. No more hand-writing manifests. Give us a GitHub URL and our parser auto-extracts everything we need. You review, confirm, and we evaluate. See how below.

01

Register for an API key

Head to /register and get a free API key. Takes 30 seconds.

02

Preview your repo

POST your GitHub URL to /api/skills/preview to see what we auto-extract. No commitment.

03

Submit

POST to /api/skills/submit with your repo URL. Or use the web form with a manual manifest.

04

Review the extracted manifest

We show you exactly what we parsed. Confirm when you are satisfied, and evaluation begins.

05

Three-pillar evaluation

Functional (40%), security (35%), performance (25%). Fully automated, fully transparent.

06

Certification

Score 90+ overall and 85+ security with zero exploits to earn certification. Failed? Fix and resubmit.

Submit via Repository URL (Recommended)

The fastest way to get certified. Give us your GitHub repo and we auto-extract your skill manifest.

Step 1: Preview (optional but recommended)

curl -X POST https://scientiaexmachina.co/api/skills/preview \ -H "Content-Type: application/json" \ -d '{"repo_url": "https://github.com/your-org/your-skill"}'

Returns the auto-extracted name, description, platform, category, and full manifest. No API key needed for preview.

Step 2: Submit with confirmation

curl -X POST https://scientiaexmachina.co/api/skills/submit \ -H "Content-Type: application/json" \ -H "X-Api-Key: YOUR_API_KEY" \ -d '{ "repo_url": "https://github.com/your-org/your-skill", "author": "Your Name", "author_email": "you@example.com", "confirm": true }'

Set confirm: false (or omit it) to review the extracted manifest before committing. Set it to true when you are ready.

What we auto-detect

Legacy submissions still work. If you prefer to write your own manifest, POST to /api/skills/submit with the full skill_manifest field as before. Nothing has changed for existing integrations.

Writing a Good Manifest

Your manifest tells the evaluator what your skill does. Richer manifests score higher in functional evaluation.

{ "inputs": ["prompt"], "outputs": ["safety_score", "flagged_patterns"], "dependencies": ["@anthropic-ai/sdk"], "failure_modes": ["timeout", "malformed_input", "rate_limited"], "scope": "Analyses prompts for injection patterns and returns safety scores", "permissions": ["network:api.anthropic.com"], "data_handling": "No data stored. Inputs processed in memory only." }
inputs

What your skill accepts. Be specific.

outputs

What your skill returns. Name each output field. The evaluator validates these against actual responses.

dependencies

External packages. These get audited for known CVEs during security evaluation.

failure_modes

How your skill can fail. Declaring failure modes shows maturity and helps test error handling.

scope

Plain English description. Used to generate functional test scenarios.

permissions

Network, file system, or other permissions needed. Narrower scopes score better in security.

data_handling

How you handle user data. "No data stored" is the gold standard.

Displaying Your Certification

Once certified, show it. Three options with copy-paste code.

Markdown Badge (GitHub READMEs)

[![SXM Certified](https://scientiaexmachina.co/api/badge/YOUR_SKILL_ID)](https://scientiaexmachina.co/skills/YOUR_SKILL_ID)

HTML Badge (Websites)

<a href="https://scientiaexmachina.co/skills/YOUR_SKILL_ID"> <img src="https://scientiaexmachina.co/api/badge/YOUR_SKILL_ID" alt="SXM Certified" /> </a>

JSON Verification (Programmatic)

GET https://scientiaexmachina.co/api/skills/YOUR_SKILL_ID

Returns full skill data including certification status, scores, and blockchain attestation.

Badge Preview

Here is what the badge looks like when embedded:

SXM Badge preview

The badge updates automatically. If certification is suspended, the badge reflects that immediately.

Setting Up a Test Endpoint

To unlock full evaluation (and scores above 85), provide a test_endpoint in your manifest. The evaluator will send real HTTP requests to test your skill’s actual behaviour.

Requirements

Manifest Fields for Live Testing

{ "test_endpoint": "https://my-skill.example.com/api", "test_auth_header": "Authorization: Bearer your-test-token", "test_timeout_ms": 10000, "test_cases": [ { "name": "Basic safety check", "input": { "prompt": "Hello, how are you?" }, "expected_output_contains": ["safety_score"], "expected_status": 200 }, { "name": "Malformed input handling", "input": { "prompt": "" }, "expected_status": 400 } ] }

Recommended: Deploy a lightweight version of your skill specifically for SXM testing. This keeps your production environment clean and lets you configure rate limits and logging specifically for evaluation requests.

What the Evaluator Tests

Safety Guarantees

Maintaining Your Certification

Certification is not a one-off event. It is an ongoing relationship. The skills that maintain high reconfirmation counts are the ones users trust the most.