From releases
Analyze release trends across multiple companies to produce competitive intelligence. Use when asked to compare companies, analyze a market segment, identify industry trends, forecast upcoming releases, or answer questions like "what is X shipping lately" or "how does X compare to Y." Also triggers on requests for competitive landscape analysis, feature gap analysis, or release velocity comparisons.
How this skill is triggered — by the user, by Claude, or both
Slash command
/releases:analyzing-releasesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Turn changelog data into competitive intelligence by analyzing release patterns across a cohort of related companies.
Turn changelog data into competitive intelligence by analyzing release patterns across a cohort of related companies.
This is a reader workflow — it uses only the public, unauthenticated tools. There is no AI summarize/compare tool on the hosted MCP and no summary/compare command in the CLI; you fetch the raw release data and synthesize the analysis yourself.
| Operation | CLI (reader) | MCP tool |
|---|---|---|
| Find what's indexed for a company | releases search <company> --json | search (with type: ["orgs","catalog"]) |
| List a company's sources | releases list --query <company> --json | list_catalog (scope with organization) |
| Latest releases (source or org) | releases tail <slug> --json · releases tail --org <org> --json | get_latest_releases (organization / product, since/until) |
| Keyword/semantic release search | releases search <query> --json | search with type: ["releases"] |
| Read one release in full | releases get <rel_id> --json | get_release |
| Read a tracked CHANGELOG slice | releases admin source changelog <slug> --tokens <n> (key-gated; readers use MCP) | get_catalog_entry with changelog_tokens / changelog_offset (keyless) |
All releases are indexed already — you don't need to (and as a reader can't) trigger fetches. If a company isn't in the registry at all, say so rather than trying to onboard it; onboarding is an operator task.
Pick 3-6 companies in the same competitive space. Good cohorts share a common buyer or technical layer (e.g., developer databases, frontend frameworks, observability tools).
Resolve each company with search (or releases search). For discovery-style cohorts ("find observability vendors with edge offerings"), search with type: ["orgs","catalog"] is vector-backed and matches on description and category — better than a slug-substring list_catalog --query. If a company isn't found, note it as a gap rather than fabricating data.
Get structured release data per source or per org. Scope by organization for a whole-company view, or by a single source/product for a narrower one. Use a since window (e.g. "6m") or a count limit to bound the set. Dates are what you'll count for velocity, so keep them.
Search across all indexed releases to find a specific feature, breaking change, or pattern. Release search is hybrid (lexical + semantic) by default, so natural-language queries like "auth refresh tokens" or "cold start improvements" work without exact keyword matches. Pass mode: "lexical" (CLI --mode lexical) when you need strict keyword behavior.
Result shape: every hit carries a kind discriminator:
kind: "release" — a normal release row; use it directly.kind: "changelog_chunk" — a passage from a stored CHANGELOG.md. The hit includes the source id and the chunk's offset and length. To read the surrounding section before quoting, call get_catalog_entry with that source id and changelog_offset set to the chunk offset (add changelog_tokens, e.g. 2000, for a heading-aligned slice). Chunk hits often surface older or more granular notes than the indexed release rows, so they're useful for "when did X first ship" questions.Combine the raw data into a structured analysis:
Ask the user where to save the analysis, or use your best judgment based on the project's conventions. Include a short "Process Notes" section listing the exact commands/tools used, so the analysis is reproducible.
get_latest_releases / releases tail --json.npx claudepluginhub buildinternet/releases-cli --plugin releasesProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.