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
9 changes: 8 additions & 1 deletion plugins/plugin-dev/commands/create-marketplace.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,17 @@ Guide the user through creating a complete plugin marketplace from initial conce
- Available plugins table (to be filled in Phase 5)
- Contributing guidelines (if community)

5. Initialize git repo if creating new directory
5. Initialize git repo if creating new directory (only `git init` is available; additional git operations like staging and committing are left to the user after the workflow completes to respect their commit preferences)

**Output**: Marketplace directory structure created

**Post-workflow git operations** (user can run after completion):

```bash
git add .
git commit -m "feat: initial marketplace structure"
```

---

## Phase 5: Plugin Entry Configuration
Expand Down
9 changes: 8 additions & 1 deletion plugins/plugin-dev/commands/create-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,17 @@ Guide the user through creating a complete, high-quality Claude Code plugin from
```
5. Create README.md template
6. Create .gitignore if needed (for .claude/*.local.md, etc.)
7. Initialize git repo if creating new directory
7. Initialize git repo if creating new directory (only `git init` is available; additional git operations like staging and committing are left to the user after the workflow completes to respect their commit preferences)

**Output**: Plugin directory structure created and ready for components

**Post-workflow git operations** (user can run after completion):

```bash
git add .
git commit -m "feat: initial plugin structure"
```

---

## Phase 5: Component Implementation
Expand Down
Loading