Initial structure: add CLAUDE.md, LICENSE, README.md, and deal-lookup skill
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# CartSnitch Skills
|
||||
|
||||
This repository contains reusable skills for CartSnitch agents. Skills extend Claude Code's capabilities with domain-specific knowledge and tooling.
|
||||
|
||||
## What is a Skill?
|
||||
|
||||
A skill is a self-contained module that provides:
|
||||
- Documentation on when and how to use it
|
||||
- Optional bash scripts for implementation
|
||||
- Reference materials for context
|
||||
|
||||
## Skills
|
||||
|
||||
| Skill | Description |
|
||||
|-------|-------------|
|
||||
| `deal-lookup` | Looks up grocery deals and promotions |
|
||||
|
||||
## Creating a Skill
|
||||
|
||||
1. Create a directory: `<skill-name>/`
|
||||
2. Add `SKILL.md` with YAML frontmatter:
|
||||
```yaml
|
||||
---
|
||||
name: <skill-name>
|
||||
description: One-line description of what the skill does
|
||||
---
|
||||
```
|
||||
3. Follow with usage documentation.
|
||||
4. Optionally add `scripts/` for bash implementation or `references/` for supporting docs.
|
||||
|
||||
## Contributing
|
||||
|
||||
Submit skills via pull request following the CartSnitch SDLC workflow. Once merged, authorized managers can import skills into the company skill library via the Paperclip API.
|
||||
Reference in New Issue
Block a user