contentbit 0.1.0 → 0.2.0
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 +4 -0
- package/dist/bin.js +1064 -88
- package/dist/commands/agents.d.ts +11 -0
- package/dist/commands/agents.d.ts.map +1 -0
- package/dist/commands/agents.js +197 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +411 -39
- package/dist/commands/stats.d.ts +3 -0
- package/dist/commands/stats.d.ts.map +1 -0
- package/dist/commands/stats.js +49 -0
- package/dist/commands/validate.d.ts.map +1 -1
- package/dist/commands/validate.js +5 -2
- package/dist/load-registry.d.ts.map +1 -1
- package/dist/load-registry.js +10 -1
- package/dist/run.d.ts +1 -1
- package/dist/run.d.ts.map +1 -1
- package/dist/run.js +1062 -86
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -10,6 +10,10 @@ pnpm dlx contentbit@latest init
|
|
|
10
10
|
# validate — exits 1 with file:line:col diagnostics
|
|
11
11
|
contentbit validate "content/**/*.md"
|
|
12
12
|
|
|
13
|
+
# structured JSON stats for one document: outline, word counts,
|
|
14
|
+
# block census, links, validation summary — quick context for LLMs
|
|
15
|
+
contentbit stats article.md
|
|
16
|
+
|
|
13
17
|
# compact LLM context generated from the registry
|
|
14
18
|
contentbit instructions --audience llm --out guide.md
|
|
15
19
|
|