codemuster 0.0.1

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # codemuster
2
+
3
+ Full-coverage codebase audits with a real coverage number. The CLI iterates every entry point
4
+ and every file, calls your coding agent (Claude Code, Codex, Gemini CLI, OpenCode) once per unit
5
+ of work in a fresh context, checks it off in a local ledger, and verifies findings before
6
+ reporting them.
7
+
8
+ This package name is reserved. The first release will install the platform binary so that
9
+ `npx codemuster` works wherever your coding agent is installed.
10
+
11
+ Source and progress: https://github.com/TSCarterJr/CodeMuster
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "codemuster",
3
+ "version": "0.0.1",
4
+ "description": "CodeMuster: full-coverage codebase audits with a coverage number. Every file answers present. Placeholder release; the CLI ships soon.",
5
+ "license": "MIT",
6
+ "author": "Tim Carter",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/TSCarterJr/CodeMuster.git"
10
+ },
11
+ "homepage": "https://github.com/TSCarterJr/CodeMuster",
12
+ "keywords": ["code-audit", "code-review", "security", "coverage", "ai", "agent-skill", "claude-code", "codex", "gemini-cli", "opencode"],
13
+ "files": ["README.md"]
14
+ }