Skip to content

Commit 6e4e362

Browse files
Add dos-kernel server manifest
1 parent 6a92e54 commit 6e4e362

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "dos-kernel",
3+
"display_name": "DOS Kernel",
4+
"description": "Deterministic trust kernel for AI-agent fleets: verify an agent's \"done\" claim against git evidence instead of self-report, arbitrate file collisions between concurrent agents, and audit commit messages against their own diffs.",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/anthony-chaudhary/dos-kernel"
8+
},
9+
"homepage": "https://github.com/anthony-chaudhary/dos-kernel",
10+
"author": {
11+
"name": "anthony-chaudhary"
12+
},
13+
"license": "MIT",
14+
"categories": [
15+
"Dev Tools"
16+
],
17+
"tags": [
18+
"verification",
19+
"trust",
20+
"agents",
21+
"git",
22+
"guardrails",
23+
"multi-agent"
24+
],
25+
"arguments": {},
26+
"installations": {
27+
"python": {
28+
"type": "python",
29+
"command": "uvx",
30+
"args": [
31+
"--from",
32+
"dos-kernel[mcp]",
33+
"dos-mcp"
34+
],
35+
"env": {},
36+
"description": "Run the dos-mcp stdio server from PyPI via uvx (the [mcp] extra carries the MCP server framework)",
37+
"recommended": true
38+
}
39+
},
40+
"examples": [
41+
{
42+
"title": "Verify a 'done' claim",
43+
"description": "Check whether claimed work actually landed, from git evidence rather than the agent's say-so",
44+
"prompt": "Use dos_verify to check whether the phase I just claimed finished actually shipped in this repo"
45+
},
46+
{
47+
"title": "Arbitrate concurrent edits",
48+
"description": "Decide whether two agents may safely work the same files at the same time",
49+
"prompt": "Use dos_arbitrate to check whether I can take the docs lane right now"
50+
},
51+
{
52+
"title": "Audit a commit's claim",
53+
"description": "Flag a commit whose message claims work its own diff doesn't contain",
54+
"prompt": "Run dos_commit_audit on HEAD and tell me if the subject is backed by the diff"
55+
}
56+
]
57+
}

0 commit comments

Comments
 (0)