mirror of
https://github.com/agentskills/agentskills.git
synced 2026-06-18 15:54:06 +08:00
fbb6c829fd
* 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>
24 lines
861 B
Markdown
24 lines
861 B
Markdown
# CLAUDE.md
|
|
|
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. The project defines an open format for teaching AI agents specialized workflows through SKILL.md files.
|
|
|
|
## Documentation
|
|
|
|
The Agent Skills documentation site, defined in the `docs/` directory, is built with [Mintlify](https://mintlify.com).
|
|
|
|
### Quick Start Commands
|
|
|
|
```bash
|
|
# Run local development server
|
|
npm run dev
|
|
```
|
|
|
|
Local preview available at `http://localhost:3000`
|
|
|
|
### Development Notes
|
|
|
|
- **Navigation**: Defined in `docs/docs.json` under `navigation.pages` array
|
|
- **Adding pages**: Create new `.mdx` file in `/docs`, add filename (without extension) to navigation
|
|
- **Deployment**: Automatic on push to `main` branch
|
|
- **Troubleshooting**: If page shows 404, ensure you're running `mint dev` from directory containing `docs.json`
|