@thedecipherist/mdd 1.8.3 → 1.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@ Then in Claude Code:
|
|
|
57
57
|
- [History: From Starter Kit to Standalone Package](#history-from-starter-kit-to-standalone-package)
|
|
58
58
|
- [Dashboards](#dashboards)
|
|
59
59
|
- [Companion Tools](#companion-tools)
|
|
60
|
+
- [Projects Built with MDD](#projects-built-with-mdd)
|
|
60
61
|
- [License](#license)
|
|
61
62
|
|
|
62
63
|
---
|
|
@@ -236,13 +237,14 @@ Every feature doc and ops runbook has a `tags:` field (4–8 domain-concept keyw
|
|
|
236
237
|
|
|
237
238
|
---
|
|
238
239
|
|
|
239
|
-
## All
|
|
240
|
+
## All 27 Modes at a Glance
|
|
240
241
|
|
|
241
242
|
```
|
|
242
243
|
/mdd <feature description> Build Mode - Document, plan, and implement
|
|
243
244
|
/mdd bug <description> Bug Mode - Fix bugs tracked in feature docs
|
|
244
245
|
/mdd manual [--force] Manual Mode - Generate a print-ready user manual
|
|
245
246
|
/mdd audit [section] Audit Mode - Scan code for violations and drift
|
|
247
|
+
/mdd security-rules Scan deps for vulnerabilities, generate stack rule files
|
|
246
248
|
/mdd status Overview: docs, tests, audit state, initiatives
|
|
247
249
|
/mdd scan Detect features whose source files changed
|
|
248
250
|
/mdd update <feature-id> Re-sync a feature doc after code changes
|
|
@@ -1190,6 +1192,26 @@ mdd-dashboard
|
|
|
1190
1192
|
|
|
1191
1193
|
---
|
|
1192
1194
|
|
|
1195
|
+
## Projects Built with MDD
|
|
1196
|
+
|
|
1197
|
+
Every project below was built start to finish with this workflow - spec first in Claude Desktop, feature docs second, then code through the seven-phase pipeline. Each `.mdd/` link shows the full paper trail.
|
|
1198
|
+
|
|
1199
|
+
| Project | What it does |
|
|
1200
|
+
|---------|-------------|
|
|
1201
|
+
| [MarkdownAI](https://github.com/TheDecipherist/markdownai) | Live documents powered by directives. Markdown files that query databases, call APIs, and render dynamically. Six npm packages, 80 feature docs. - [.mdd/](https://github.com/TheDecipherist/markdownai/tree/main/.mdd) |
|
|
1202
|
+
| [StrictDB](https://github.com/TheDecipherist/strictdb) | Unified database driver with MongoDB-style syntax across PostgreSQL, MySQL, MSSQL, SQLite, and Elasticsearch. Single shared connection layer. - [npm](https://www.npmjs.com/package/strictdb) · [.mdd/](https://github.com/TheDecipherist/strictdb/tree/main/.mdd) |
|
|
1203
|
+
| [ClassMCP](https://github.com/TheDecipherist/classmcp) | MCP server for AI-assisted CSS. Semantic class patterns that cut token usage by ~77% compared to inline Tailwind. Works with Tailwind, Bootstrap, UnoCSS, Tachyons. - [npm](https://www.npmjs.com/package/classmcp) · [.mdd/](https://github.com/TheDecipherist/classmcp/tree/main/.mdd) |
|
|
1204
|
+
| [Classpresso](https://github.com/TheDecipherist/classpresso) | Build-time CSS class consolidation for AI-generated code. Eliminates redundant utility classes at build time. - [npm](https://www.npmjs.com/package/classpresso) · [.mdd/](https://github.com/TheDecipherist/classpresso/tree/main/.mdd) |
|
|
1205
|
+
| [mdd-tui](https://github.com/TheDecipherist/mdd-tui) | Terminal dashboard for MDD projects. Split-pane view of docs, audit reports, initiative progress, and ops runbooks. - [.mdd/](https://github.com/TheDecipherist/mdd-tui/tree/main/.mdd) |
|
|
1206
|
+
| [mdd-dashboard](https://github.com/TheDecipherist/mdd-dashboard) | Browser-based visual dashboard. Interactive D3 dependency graphs with live reload and git-aware filtering. - [.mdd/](https://github.com/TheDecipherist/mdd-dashboard/tree/main/.mdd) |
|
|
1207
|
+
| [DockerDoctor](https://github.com/TheDecipherist/dockerdoctor) | Docker container health monitoring and diagnostics. Automated health checks, log analysis, and recovery suggestions. - [.mdd/](https://github.com/TheDecipherist/dockerdoctor/tree/main/.mdd) |
|
|
1208
|
+
| [TerseJSON](https://github.com/TheDecipherist/tersejson) | Transparent JSON key compression using lazy-loading proxies. 30-80% bandwidth reduction with no changes to consuming code. - [.mdd/](https://github.com/TheDecipherist/tersejson/tree/main/.mdd) |
|
|
1209
|
+
| [CompressMCP](https://github.com/TheDecipherist/compressmcp) | Lossless dictionary-based JSON key compression for MCP tool responses via pre/post hooks. - [.mdd/](https://github.com/TheDecipherist/compressmcp/tree/main/.mdd) |
|
|
1210
|
+
| [PipeStage](https://github.com/TheDecipherist/pipestage) | Type-safe pipeline composition for Node.js with built-in error handling, validation, and parallel execution. - [.mdd/](https://github.com/TheDecipherist/pipestage/tree/main/.mdd) |
|
|
1211
|
+
| [PeelX](https://github.com/TheDecipherist/peelX) | Recursive nested archive extraction CLI. Automatically unpacks zip-in-tar-in-gz in one command. Python, distributed via PyPI. - [.mdd/](https://github.com/TheDecipherist/peelX/tree/main/.mdd) |
|
|
1212
|
+
|
|
1213
|
+
---
|
|
1214
|
+
|
|
1193
1215
|
## License
|
|
1194
1216
|
|
|
1195
1217
|
MIT - [TheDecipherist](https://github.com/TheDecipherist)
|