Skip to content

Commit bf9bb5a

Browse files
committed
remove claude marketplace as install option and have npx skills as the only install path
Signed-off-by: Kashish Mittal <kmittal@redhat.com>
1 parent 53aed67 commit bf9bb5a

4 files changed

Lines changed: 0 additions & 116 deletions

File tree

AGENTS.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -64,29 +64,6 @@ If told an implementation was wrong, apply the correction and then record what w
6464

6565
---
6666

67-
## Versioning
68-
69-
Keep version fields in sync across:
70-
71-
- `pyproject.toml` — package version
72-
- `.claude-plugin/plugin.json` — plugin manifest
73-
- `.claude-plugin/marketplace.json` — marketplace listing (2 occurrences)
74-
75-
### When to bump
76-
77-
Include a **patch** version bump (`x.y.Z`) in any PR that changes skill behavior, scripts, or SKILL.md files. Use **minor** (`x.Y.0`) for new skills/features, **major** (`X.0.0`) for breaking changes. Do NOT bump for docs-only or CI-only changes.
78-
79-
### How to bump
80-
81-
1. Read the current version from `pyproject.toml`.
82-
2. Compute the new version (patch/minor/major as appropriate).
83-
3. Update all three files (4 occurrences total) in the same commit.
84-
4. The PR title should include the new version, e.g., `feat: add foo skill (v0.2.0)`.
85-
86-
### Git tags
87-
88-
The `skills` CLI (`npx skills add`) resolves versions via git tags, not from the JSON version fields. After merging a version-bump PR, create a tag: `git tag v<VERSION> && git push origin v<VERSION>`.
89-
9067
## Available skills
9168

9269
User-facing skills live under `skills/`:

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,6 @@ npx skills add redhat-developer/rhdh-users-skill-pack -a cursor
108108

109109
Supported agents include Claude Code, Cursor, Codex, Pi, and [many others](https://github.com/vercel-labs/skills#supported-agents).
110110

111-
### Claude Code plugin marketplace
112-
113-
```bash
114-
claude plugin marketplace add redhat-developer/rhdh-users-skill-pack
115-
claude plugin install --scope project rhdh-users-skill-pack
116-
```
117-
118111
### Local checkout (development)
119112

120113
```bash

tests/unit/test_claude_md.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,6 @@ def test_has_verification_command(self, agents_md):
4747
"""AGENTS.md should reference test verification."""
4848
assert "uv run pytest" in agents_md
4949

50-
def test_has_versioning_section(self, agents_md):
51-
"""AGENTS.md should document versioning."""
52-
assert "pyproject.toml" in agents_md
53-
assert "plugin.json" in agents_md
54-
assert "marketplace.json" in agents_md
55-
5650
def test_has_available_skills_section(self, agents_md):
5751
"""AGENTS.md should list user-facing skills."""
5852
assert "## Available skills" in agents_md

tests/unit/test_marketplace.py

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)