Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI

on:
push:
pull_request:

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate marketplace manifest
run: |
python3 -c "import json; d=json.load(open('.claude-plugin/marketplace.json', encoding='utf-8')); assert d.get('name') and d.get('owner') and d.get('plugins'), 'missing required marketplace fields'; assert all(p.get('name') and p.get('source') for p in d['plugins']), 'a plugin entry is missing name/source'; print('marketplace.json OK:', len(d['plugins']), 'plugins')"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ And `prep-compact` for a warm session-handoff that drafts tailored `/compact` in
/plugin install prep-compact@agent-tools
```

After installing, run `/reload-plugins` to activate everything in the current session (or restart Claude Code).

Refresh later with `/plugin marketplace update agent-tools`.

## Dependencies between plugins
Expand Down
Loading