Write clear technical documentation following Google's style guide. Use when writing docs, README files, API documentation, code comments, user guides, or asking about documentation style.
Writes clear technical documentation following Google's developer style guide.
npx claudepluginhub tenzir/claude-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Write clear, consistent technical documentation based on Google's developer documentation style guide.
Use second person: Address the reader directly with "you."
Good: "You can configure the server by editing config.yaml."
Bad: "We can configure the server by editing config.yaml."
Use active voice: Make clear who performs the action.
Good: "The function returns an error code." Bad: "An error code is returned by the function."
Be conversational but professional: Write naturally without slang, jargon, or excessive formality. Use common contractions like "you're," "don't," and "it's" to maintain an informal tone.
| Avoid | Use Instead |
|---|---|
| blacklist/whitelist | denylist/allowlist, blocklist/safelist |
| master/slave | primary/replica, leader/follower |
| man-hours | person-hours |
| guys | everyone, folks, team |
| sanity check | quick check, coherence check |
Numbered lists: For sequential steps or ordered items.
Bulleted lists: For non-sequential items.
List guidelines:
Structure:
Guidelines:
Use code font (backticks) for:
Don't use code font for:
Grammar: Don't inflect code elements. Write "send a POST request" not
"POST the data."
| Avoid | Use Instead |
|---|---|
| aka | also known as, or use parentheses |
| allows you to | lets you |
| config | configuration |
| admin | administrator |
| click on | click |
| check (checkbox) | select |
| uncheck | clear |
| higher/lower (versions) | later/earlier |
When style questions arise, consult in order:
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.