* Add package.json to docs for local mint dev dependency
Allow installing mint as a local dev dependency instead of requiring
a global install, making the setup more reproducible.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Use npx mint dev to avoid mint version bug
Address PR review feedback: the mint package has a bug that causes it
to use the wrong version when installed as an npm dependency. Switch to
npx mint dev, remove the devDependency and package-lock.json, and
simplify docs accordingly.
* Move `package.json` to repo root and clean up docs
Move the `package.json` from `docs/` to the repo root so `npm run dev`
works from anywhere in the repository. Update `CLAUDE.md` instructions
to match, trim boilerplate from `docs/README.md`, and link to the live
documentation site.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: Jonathan Hefner <jonathan@hefner.pro>
* Add "Using scripts" guide for skill creators
New guide at `docs/skill-creation/using-scripts.mdx` covering how to use
commands and scripts in skills:
- One-off commands with `uvx`, `pipx`, `npx`, `bunx`, `go run`,
`deno run` (tabbed by ecosystem, with pinned version examples)
- Referencing bundled scripts from `SKILL.md` using relative paths
- Self-contained scripts with inline dependency declarations (PEP 723,
Deno `npm:` imports, Bun auto-install, Ruby `bundler/inline` — tabbed
with a common HTML-parsing example)
- Designing scripts for agentic use: non-interactive execution, `--help`
documentation, error messages, structured output, and a compressed
checklist of further considerations
Also updates `docs/docs.json` to organize navigation into groups ("For
skill creators" and "For client implementors").
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Address review feedback on "Using scripts" guide
Relative paths note: Clarify that the convention applies to support
files like `references/*.md`, and explain *why* (the agent runs commands
from the skill root).
Structured output: Reframe motivation around composability with both
agents and standard tools (`jq`, `cut`, `awk`) rather than LLM parsing
ambiguity. Shorten prose; let the code example's inline comments carry
the contrast.
Predictable output size: Add `--output` flag as an alternative strategy
for scripts whose output is large and not amenable to pagination. The
`--output` flag acts as a consent mechanism — the agent must explicitly
choose a file destination or pass `-` to opt in to stdout, preventing
accidental context-window flooding.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* Add OpenHands logo to adoption carousel
OpenHands is an AI software development platform that natively supports
Agent Skills, enabling users to extend agent capabilities with specialized
knowledge and workflows.
Changes:
- Added openhands-logo-light.svg and openhands-logo-dark.svg to /docs/images/logos/openhands/
- Added OpenHands entry to LogoCarousel.jsx
Website: https://www.all-hands.dev/
* Update OpenHands logos to full color versions
---------
Co-authored-by: jamiechicago312 <jamiechicago312@users.noreply.github.com>
Co-authored-by: openhands <openhands@all-hands.dev>
Replace the placeholder `[yyyy] [name of copyright owner]` with
`2025 Anthropic, PBC` to match the project's origin date and maintainer.
Closes#145
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Covers types of welcome contributions (docs, bug reports, proposals),
ecosystem listing & logo request process, development setup for the docs
site, submitting changes, and AI contribution disclosure policy (adapted
from the MCP project).
Directs proposals and feature requests to GitHub Discussions, reserving
Issues for bug reports. Notes that `skills-ref/` is not accepting code
contributions and that skill submissions and major architectural changes
are not being accepted at this time.
License section reflects dual licensing: Apache 2.0 for code and spec,
CC-BY 4.0 for documentation.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The `logo-scroll` keyframe translated by `-50%`, but flex `gap: 3rem`
means `2N` duplicated items have `2N - 1` gaps — so the track doesn't
split evenly at 50%. The seam between the two copies sits at
`50% + half a gap`. Adjusting to `calc(-50% - 1.5rem)` aligns the
animation endpoint with the start of the second copy, eliminating the
visible jump every 50 seconds.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Replace the plain bold-text blockquote with GitHub's alert syntax so the
"not for production" notice renders with a colored icon and background,
making it harder to miss.
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file was originally copied from the modelcontextprotocol repo.
These styles were specific to MCP documentation pages and are not used
here:
- `#feature-support-matrix-wrapper` table styling
- `#schema-reference` TypeScript documentation styling
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Add top-level LICENSE file (Apache 2.0) and a License section to
README documenting the dual-license structure: Apache 2.0 for code,
CC-BY-4.0 for documentation.
Closes#121
* Create todo.md
* Add files via upload
* Delete docs/images/logos/mistral-vibe/todo.md
* add mistral ai vibe to doc
* added black and white versions
* update whiteblack logos
* add vibe to carousel
* swap light dark
---------
Co-authored-by: jaccolor <jac_color@protonmail.com>
Co-authored-by: Eric Harmeling <eric.harmeling@outlook.com>
* Add Firebender logo
Adds logo for android focused coding agent, Firebender that supports skills
Resolves#71🤖 Generated with [Firebender](https://firebender.com)
Co-Authored-By: Firebender <help@firebender.com>
* fix: replace low-res Firebender SVG logos with high-resolution versions
Updated both light and dark wordmark SVGs with high-resolution exports from Figma.
Old viewBox: ~145x18 / 161x20
New viewBox: 2151x267
This addresses the resolution concerns in PR feedback.
🤖 Generated with [Firebender](https://firebender.com)
Co-Authored-By: Firebender <help@firebender.com>
---------
Co-authored-by: Firebender <help@firebender.com>
Agentman is an agentic AI platform that natively supports Agent Skills,
enabling users to build AI agents with skill-based capabilities.
Co-authored-by: Eric Harmeling <eric.harmeling@outlook.com>
Reference library for Agent Skills with CLI and Python API:
- validate: Check skill directories for valid SKILL.md with proper frontmatter
- read-properties: Parse and output skill properties as JSON
- to-prompt: Generate suggested <available_skills> XML for agent prompts
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <noreply@anthropic.com>