Skip to content

Commit 4ea85db

Browse files
ZenterFlowclaude
andcommitted
Production release v3.0.0 - Clean user-facing marketplace
Remove development content and streamline for production: - Remove example-plugin, tests/, docs/, .githooks/ - Update workflows to validate only production plugins - Create user-focused README v3.0.0 - Update persistence tracking This is the production marketplace with only: - plugin-formatter - claude-prioritise Development continues in claude-priority-dev repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 0f64e8b commit 4ea85db

27 files changed

Lines changed: 115 additions & 6415 deletions

.githooks/README.md

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

.githooks/pre-commit

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

.github/workflows/test-installation.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
echo "✅ marketplace.json found"
3232
3333
# Check each plugin directory exists
34-
for plugin in plugin-formatter claude-prioritise example-plugin; do
34+
for plugin in plugin-formatter claude-prioritise; do
3535
if [ ! -d "$plugin" ]; then
3636
echo "❌ Plugin directory not found: $plugin"
3737
exit 1
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
echo "🔍 Checking plugin.json files..."
4646
47-
for plugin in plugin-formatter claude-prioritise example-plugin; do
47+
for plugin in plugin-formatter claude-prioritise; do
4848
if [ ! -f "$plugin/.claude-plugin/plugin.json" ]; then
4949
echo "❌ plugin.json not found in: $plugin"
5050
exit 1
@@ -70,19 +70,6 @@ jobs:
7070
exit 1
7171
fi
7272
echo "✅ project-status skill found"
73-
74-
# example-plugin should have hello-world and status-checker skills
75-
if [ ! -d "example-plugin/skills/hello-world" ]; then
76-
echo "❌ hello-world skill not found"
77-
exit 1
78-
fi
79-
echo "✅ hello-world skill found"
80-
81-
if [ ! -d "example-plugin/skills/status-checker" ]; then
82-
echo "❌ status-checker skill not found"
83-
exit 1
84-
fi
85-
echo "✅ status-checker skill found"
8673
shell: bash
8774

8875
- name: Installation test summary
@@ -97,5 +84,4 @@ jobs:
9784
echo " /plugin marketplace add $(pwd)"
9885
echo " /plugin install plugin-formatter@claude-priority"
9986
echo " /plugin install claude-prioritise@claude-priority"
100-
echo " /plugin install example-plugin@claude-priority"
10187
shell: bash

.github/workflows/validate-plugins.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ jobs:
3838
./plugin-formatter/skills/plugin-formatter/scripts/validate-json.sh claude-prioritise
3939
./plugin-formatter/skills/plugin-formatter/scripts/validate-frontmatter.sh claude-prioritise
4040
41-
- name: Validate example-plugin
42-
run: |
43-
echo "🔍 Validating example-plugin..."
44-
./plugin-formatter/skills/plugin-formatter/scripts/validate-naming.sh example-plugin
45-
./plugin-formatter/skills/plugin-formatter/scripts/validate-json.sh example-plugin
46-
./plugin-formatter/skills/plugin-formatter/scripts/validate-frontmatter.sh example-plugin
47-
4841
- name: Validate marketplace.json
4942
run: |
5043
echo "🔍 Validating marketplace.json..."
@@ -59,7 +52,6 @@ jobs:
5952
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
6053
echo "✓ plugin-formatter"
6154
echo "✓ claude-prioritise"
62-
echo "✓ example-plugin"
6355
echo "✓ marketplace.json"
6456
echo ""
6557
echo "All plugins comply with Claude Code marketplace standards."

0 commit comments

Comments
 (0)