用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill documentation-maintainer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | documentation-maintainer |
| description | > Use when this capability is needed. |
After API changes, when behavior changes, when someone says "the docs are wrong", before releases.
Signs of doc drift:
.env.example# Find potentially stale documentation
git log --all --oneline --diff-filter=M -- src/ | head -20
# Then check if matching docs were updated in the same commit
# [Project Name]
One sentence: what this does and why it exists.
## Quick start
\`\`\`bash
npm install -g myapp
myapp init --yes
myapp --help
\`\`\`
## Installation
## Usage (with real examples, not pseudocode)
## Configuration
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| DATABASE_URL | yes | — | PostgreSQL connection string |
| PORT | no | 3000 | HTTP server port |
## API Reference (link to full docs or include here)
## Contributing
## License
FAIL: Placeholder README
# MyProject
This project does amazing things!
## Features
- Feature 1
- Feature 2
## Usage
See the docs for more information.
# ADR-NNN: [Decision title]
**Date:** YYYY-MM-DD
**Status:** accepted | proposed | deprecated | superseded by ADR-NNN
**Deciders:** [names]
## Context
[What is the problem or situation that prompted this decision?]
## Decision
[What was decided?]
## Rationale
[Why was this decided? What alternatives were considered?]
## Consequences
**Positive:**
- [Effect 1]
**Negative:**
- [Effect 1]
## References
- [Links to discussions, related issues, external resources]
# Changelog
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security
## [1.2.0] - 2025-01-15
### Added
- `omnix error-match` command for finding past error fixes
### Changed
- `retrieve-context` now uses task-type-aware retrieval modes
### Fixed
- Token budget enforcement now works correctly in debugging mode
# Generate from git history
git log --oneline --no-merges v1.1.0..HEAD --pretty=format:"- %s"
// Example: Hono + Zod + OpenAPI
import { swaggerUI } from '@hono/swagger-ui';
import { z } from 'zod';
app.openapi(
createRoute({
method: 'get',
path: '/users/{id}',
request: { params: z.object({ id: z.string() }) },
responses: {
200: { content: { 'application/json': { schema: UserSchema } } },
404: { content: { 'application/json': { schema: ErrorSchema } } },
},
}),
(c) => { ... }
);
app.get('/docs', swaggerUI({ url: '/doc' }));
# Runbook: [Service/Operation Name]
**Last updated:** YYYY-MM-DD
**On-call contact:** [name/channel]
## Service overview
[1-2 sentences: what this service does, why it's critical]
## Common alerts and responses
### Alert: HighErrorRate
**Trigger:** Error rate > 5% for 5 minutes
**Steps:**
1. Check logs: `kubectl logs -l app=myapp --tail=100`
2. Check recent deploys: `helm history myapp`
3. If recent deploy: `helm rollback myapp 0`
4. Escalate if not resolved in 15 minutes
## Deployment
[Step-by-step deploy instructions]
## Rollback
[Step-by-step rollback instructions]
.env.exampleSource: Abhiram1106/omnix — distributed by TomeVault.