-
Notifications
You must be signed in to change notification settings - Fork 0
Standardize and flesh out the Undead Legion characters #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # ⚔️ THE UNDEAD LEGION: OPERATIONAL SYNERGIES | ||
| - **Berserker ↔ Bard**: Debug-Chronicle Loop | ||
| - **Warlock ↔ Hound**: Design-Verification Gate | ||
| - **Architect ↔ Archivist**: Strategy + Memory | ||
| - **Dragon ↔ Legion**: Orchestration | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # 📚 THE UNDEAD ARCHIVIST | ||
| ## *Black Codex Entry — Complete Character Codex* | ||
|
|
||
| --- | ||
|
|
||
| ``` | ||
| The ink remembers what the flesh forgets. | ||
| ``` | ||
|
Comment on lines
+6
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Label the fenced quote. The fenced block has no language tag, so markdownlint will continue to flag it; 🧰 Tools🪛 markdownlint-cli2 (0.22.1)[warning] 6-6: Fenced code blocks should have a language specified (MD040, fenced-code-language) 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||
|
|
||
| --- | ||
|
|
||
| ## CASE STUDIES | ||
| ### Case Study I: The Rot in the Vault | ||
| He identified a Byzantine fault in a consensus layer through historical autopsy. | ||
|
|
||
| --- | ||
|
|
||
| ## RITUAL LAWS | ||
| **Ritual Law [ARCHIVIST/HISTORY]:** Those who cannot remember the legacy | ||
| code are condemned to refactor it. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # 📚 SKILL: THE BLACK LIBRARY (Undead Archivist) | ||
|
|
||
| ## Mechanical Effects | ||
| - **Kingdom Autopsy**: RCA for complex system failures. | ||
| - **Tome Binding**: Institutional memory management. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| import { Server } from "@modelcontextprotocol/sdk/server/index.js"; | ||
| import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; | ||
| import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js"; | ||
| const server = new Server({ name: "undead-archivist", version: "1.0.0" }, { capabilities: { tools: {} } }); | ||
| server.setRequestHandler(ListToolsRequestSchema, async () => ({ | ||
| tools: [{ name: "library_autopsy", description: "Perform autopsy", inputSchema: { type: "object", properties: { tome_id: { type: "string" } } } }] | ||
| })); | ||
| server.setRequestHandler(CallToolRequestSchema, async () => ({ content: [{ type: "text", text: "Autopsy complete." }] })); | ||
| async function main() { await server.connect(new StdioServerTransport()); } | ||
| main().catch(console.error); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "name": "undead-archivist-mcp", | ||
| "version": "1.0.0", | ||
| "main": "dist/index.js", | ||
| "type": "module", | ||
| "scripts": { "build": "tsc" }, | ||
| "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0" }, | ||
| "devDependencies": { "typescript": "^5.3.0" } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "compilerOptions": { | ||
| "target": "ES2022", | ||
| "module": "NodeNext", | ||
| "moduleResolution": "NodeNext", | ||
| "lib": ["ES2022", "DOM"], | ||
| "outDir": "./dist", | ||
| "rootDir": "./", | ||
| "strict": true, | ||
| "esModuleInterop": true, | ||
| "skipLibCheck": true, | ||
| "forceConsistentCasingInFileNames": true, | ||
| "resolveJsonModule": true, | ||
| "declaration": true, | ||
| "declarationMap": true, | ||
| "sourceMap": true | ||
| }, | ||
| "include": ["./**/*.ts"], | ||
| "exclude": ["node_modules", "dist"] | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Separate the title from the list.
Markdownlint flags the H1 because the bullets start immediately after it; add one empty line after line 1.
🧰 Tools
🪛 markdownlint-cli2 (0.22.1)
[warning] 1-1: Headings should be surrounded by blank lines
Expected: 1; Actual: 0; Below
(MD022, blanks-around-headings)
🤖 Prompt for AI Agents
Source: Linters/SAST tools