cc-codeconductor 0.2.8 → 0.2.9
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 +8 -1
- package/dist/index.js +1588 -55
- package/package.json +1 -1
- package/presets/seo-hotel/commands/cc-seo-llms.md +64 -0
- package/presets/seo-hotel/seo-hotel.yml +55 -0
package/README.md
CHANGED
|
@@ -29,6 +29,13 @@ contracts, task cards, and risk-based routing.
|
|
|
29
29
|
> directories
|
|
30
30
|
> - `npx cc-codeconductor update` — re-applies the council preset for the configured
|
|
31
31
|
> target
|
|
32
|
+
> - `npx cc-codeconductor seo audit --url <url>` — runs a comprehensive SEO audit
|
|
33
|
+
> on a single page (meta tags, schema.org, GEO readiness) and generates a
|
|
34
|
+
> markdown report
|
|
35
|
+
> - `npx cc-codeconductor seo audit --sitemap <url>` — batch audits all URLs from
|
|
36
|
+
> a sitemap.xml with rate limiting and SSRF prevention
|
|
37
|
+
> - `npx cc-codeconductor seo llms --sitemap <url>` — generates a `llms.txt` file
|
|
38
|
+
> for AI-search readiness from sitemap content
|
|
32
39
|
> - Manual presets for OpenCode, Claude Code, and Codex
|
|
33
40
|
> - Versioned Agent Contracts
|
|
34
41
|
> - Routing Policy documentation
|
|
@@ -196,7 +203,7 @@ npx cc-codeconductor install lsp --target cursor --dry-run # preview
|
|
|
196
203
|
npx cc-codeconductor install lsp --target all --force # overwrite existing configs
|
|
197
204
|
```
|
|
198
205
|
|
|
199
|
-
Supported languages: TypeScript, PHP, Python, Kotlin.
|
|
206
|
+
Supported languages: TypeScript, PHP, Python via Pyright, Kotlin.
|
|
200
207
|
Supported targets: opencode, claude, codex, gemini, cursor, agy.
|
|
201
208
|
|
|
202
209
|
#### `doctor` — validate configuration
|