ワンクリックで
review-documentation
Use this skill when asked to review the package documentation of the Go implementation of Feather.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use this skill when asked to review the package documentation of the Go implementation of Feather.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Defines or updates usage help for built-in commands. Use when adding help documentation to commands that don't have it, or fixing inaccurate help text.
Use this skill to make a the behavior of our builtins match that of TCL.
Implements new TCL builtin commands or subcommands in feather. Use when adding new TCL commands like lrepeat, or new subcommands to existing commands like namespace.
Create a git commit at the end of a work increment. Use when you have completed a meaningful unit of work and need to hand off to a colleague.
Use this skill when asked to work on a milestone. You are not required to complete the milestone when this skill is invoked.
Use this skill when asked to remember information about coding standards, quality, or any other kind of future rule.
| name | review-documentation |
| description | Use this skill when asked to review the package documentation of the Go implementation of Feather. |
Review Go package documentation from a user's perspective, identifying gaps and areas for improvement.
Use this skill when:
go doc . to see the package overviewgo doc -all . to see all exported symbolsReview documentation against these categories:
Register vs RegisterType vs DefineTypeTypeDef vs ForeignTypeDefProvide findings in these sections:
## Critical (Users will be blocked without this)
- Issue 1
- Issue 2
## Important (Users will struggle without this)
- Issue 1
- Issue 2
## Nice to Have (Would improve experience)
- Issue 1
- Issue 2
## What's Good (Keep these)
- Strength 1
- Strength 2
For a hypothetical database driver:
## Critical
- No mention of thread safety - can I share \*DB across goroutines?
- Close() documented but not what happens to active queries
## Important
- Query vs QueryRow vs QueryContext - when to use each?
- Error types not documented - how do I detect "connection lost"?
## Nice to Have
- Example of connection pooling configuration
- List of supported database versions
## What's Good
- Quick start example gets to working code fast
- Transaction API is well-explained with rollback semantics