| name | docs-sync |
| description | Sync AILANG documentation website with codebase reality. Use after releases, when features are implemented, or when website accuracy is questioned. Checks design docs vs website, validates examples, updates feature status. |
Documentation Sync Skill
Keep the AILANG website in sync with actual implementation by checking design docs, validating examples, and tracking feature status.
Quick Start
When to Use This Skill
Invoke this skill when:
- After any release (post-release should trigger this)
- User questions website accuracy
- Features move from planned → implemented
- Examples may be broken or outdated
- Version constants need updating
Workflow
1. Pre-flight Checks
Run all diagnostic scripts to understand current state:
.claude/skills/docs-sync/scripts/audit_design_docs.sh
.claude/skills/docs-sync/scripts/check_versions.sh
.claude/skills/docs-sync/scripts/check_examples.sh
2. Review Feature Themes
Features are grouped into themes (see resources/feature_themes.md):
| Theme | Status Page | Description |
|---|
| Core Language | /reference/language-syntax | Types, ADTs, pattern matching |
| Effect System | /reference/effects | Capabilities, IO, FS, Net |
| Module System | /reference/modules | Imports, exports, aliasing |
| Go Codegen | /guides/go-codegen | Compilation to Go |
| AI Integration | /guides/ai-integration | Prompts, benchmarks, agents |
| Testing | /guides/testing | Inline tests, property-based |
| Developer Experience | /guides/development | REPL, debugging, CLI |
| Roadmap: Execution Profiles | /roadmap/execution-profiles | v0.6.0 planned |
| Roadmap: Shared Semantic State | /roadmap/shared-semantic-state | v0.6.0 planned |
| Roadmap: Deterministic Tooling | /roadmap/deterministic-tooling | v0.7.0 planned |
3. Fix Priority Order
- Version Constants - Update
docs/src/constants/version.js
- Landing Pages - intro.mdx, vision.mdx, why-ailang.mdx
- Working Examples - Ensure examples use raw-loader, all pass
- Status Banners - Add "PLANNED" banners to future features
- Feature Docs - Create missing docs for implemented features
- Roadmap Section - Move theoretical pages to roadmap
4. Update Checklist
After fixing, verify:
cd docs && npm run build
npm run serve
git add docs/
git commit -m "docs: sync website with v0.X.X implementation"
Scripts
| Script | Purpose |
|---|
audit_design_docs.sh | Compare planned vs implemented design docs |
derive_roadmap_versions.sh | Derive target versions from design doc folders |
check_versions.sh | Verify version constants match releases |
check_examples.sh | Validate example files compile/run |
generate_report.sh | Generate sync status report |
CLI Example Verification (External)
The Makefile provides CLI example verification that complements this skill:
make verify-cli-examples
make verify-examples && make verify-cli-examples
CLI Examples File Format (examples/cli_examples.txt):
# Comment explaining the example
$ ailang run --caps IO --entry main examples/runnable/hello.ail
Hello, AILANG!
This ensures CLI syntax in documentation matches actual behavior.
Version Derivation Script
.claude/skills/docs-sync/scripts/derive_roadmap_versions.sh
.claude/skills/docs-sync/scripts/derive_roadmap_versions.sh --full
.claude/skills/docs-sync/scripts/derive_roadmap_versions.sh --check
.claude/skills/docs-sync/scripts/derive_roadmap_versions.sh --json --full
.claude/skills/docs-sync/scripts/derive_roadmap_versions.sh --full --check
Resources
| Resource | Content |
|---|
feature_themes.md | Feature groupings and expected pages |
landing_page_checklist.md | Requirements for main pages |
Integration with Post-Release
The post-release skill should invoke docs-sync automatically:
Key Principles
-
Theoretical is OK - Future features can be documented, but must:
- Link to design docs on GitHub
- Have clear status banner (e.g., "PLANNED FOR v0.6.0")
- Be in roadmap section, not current features
-
Examples Must Work - Every code example should:
- Use raw-loader to import from
examples/
- Be tested with
ailang run or ailang test
- Never embed code directly in MDX
- CLI commands must be added to
examples/cli_examples.txt and verified with ./tools/verify_cli_examples.sh
- Default entrypoint is
main - don't use --entry main unless showing non-main entry
- Test all commands before documenting:
./bin/ailang run --caps IO examples/runnable/hello.ail
Exception for Reference Documentation:
- Reference pages (e.g.,
language-syntax.md, effects.md) may use inline syntax snippets
- These are small patterns showing language constructs, not complete runnable programs
- Tutorial pages (
examples.mdx, getting-started.mdx, guides/) must always import from files
- Rule: If the code snippet is a complete runnable program, it MUST be imported
-
Design Docs = Ultimate Source of Truth - The folder structure tracks complete feature lifecycle:
Planned features:
design_docs/planned/v0_6_0/foo.md → Feature targets v0.6.0
- Website pages must match:
PLANNED FOR v0.6.0 banner
- Website MUST link to design doc on GitHub as ultimate reference
- OVERDUE = design doc folder version ≤ current release but not implemented
Implemented features:
design_docs/implemented/v0_5_6/foo.md → Feature shipped in v0.5.6
- Website reference pages can link to implemented design docs
- Moving
planned/ → implemented/ = feature is done
Validation:
- Run
./scripts/derive_roadmap_versions.sh --check to validate website
- Run
./scripts/derive_roadmap_versions.sh --full to see complete lifecycle
- Script checks for GitHub links in roadmap pages
-
One Source of Truth - Version comes from:
git describe --tags → actual version
prompts/versions.json → latest syntax prompt (ailang prompt)
prompts/devtools/versions.json → latest dev tools prompt (ailang devtools-prompt)
- These feed into
docs/src/constants/version.js
- Website should reference both prompts and explain when to use each
-
Themes Over Changelog - Group features by theme, not by version. Users care about "how do effects work?" not "what changed in v0.5.3?"
-
Evolving Themes - Themes should evolve as the language grows:
- When a feature doesn't fit existing themes, consider a new theme
- New themes warrant new landing pages
- Update
resources/feature_themes.md when adding themes
- Current themes: Core Language, Type System, Effect System, Module System, Go Codegen, Arrays, Testing, AI Integration, Developer Experience
- Roadmap themes: Execution Profiles, Deterministic Tooling, Shared Semantic State
Theme Evolution Guidelines
When reviewing new features, ask:
- Does this fit an existing theme? → Add to that theme's page
- Is this a major new capability? → Consider a new theme
- Is this cross-cutting? → May need multiple mentions but one authoritative page
Signals for a New Theme
- 3+ related features with no natural home
- A new design doc folder (e.g.,
v0_7_0/) with a coherent focus
- User questions consistently asking "how do I do X?" where X isn't covered
- A planned feature graduating to implemented that's substantial
Creating a New Theme
- Add entry to
resources/feature_themes.md
- Create website page at appropriate location
- Update sidebar in
docs/sidebars.js
- Cross-link from related themes
- Update this skill's theme table above