Loading...
Loading...
Update voxtype documentation for releases and features. Use when adding features, fixing bugs, or preparing releases. Covers user manual, troubleshooting, website, release notes, and contributor credits.
npx skill4agent add peteonrails/voxtype update-docs| Document | Location | When to Update |
|---|---|---|
| User Manual | | New features, usage changes |
| Configuration Guide | | New config options |
| Troubleshooting | | New error conditions, fixes |
| FAQ | | Common questions |
| README | | Major features, installation changes |
| Website News | | Every release |
| GitHub Release | GitHub Releases | Every release |
| Obsidian Vault | | Session notes, decisions |
docs/USER_MANUAL.mddocs/CONFIGURATION.md### new_option
Enable the new feature.
```toml
[section]
new_option = true # default: false
## Troubleshooting Updates
Location: `docs/TROUBLESHOOTING.md`
Format for new issues:
```markdown
### Error: The specific error message
**Cause:** Why this happens
**Solution:**
1. Step one
2. Step two
**Example:**
```bash
command to fix
## Website News Articles
Location: `website/news/index.html`
Every GitHub release needs a matching news article. Follow v0.4.10/v0.4.11 as examples.
Structure:
```html
<article class="news-article" id="v0415">
<div class="article-meta">
<time datetime="2026-01-20">January 20, 2026</time>
<span class="article-tag">Release</span>
</div>
<h2>v0.4.15: Feature Summary</h2>
<div class="article-body">
<p>Intro paragraph...</p>
<h3>Feature Name</h3>
<p>Description.</p>
<p><strong>Why use it:</strong> User benefit.</p>
<div class="code-block">
<div class="code-header"><span>config.toml</span></div>
<pre><code>[section]
option = "value"</code></pre>
</div>
</div>
</article>v0.4.15: Feature Summary###**Why use it:**/obsidian~/Documents/markdown-notes/Voxtype/Co-authored-by: Name <email@example.com>authors = [
"Peter Jackson <pete@peteonrails.com>",
"Contributor Name <contributor@example.com>",
]docs/USER_MANUAL.mddocs/CONFIGURATION.mddocs/TROUBLESHOOTING.mdwebsite/news/index.htmlpackaging/arch-bin/voxtype-bin.installsrc/cli.rs/// Clear description of what this option does
#[arg(long, short = 'x')]
pub new_option: bool,--help