Moonsite extensions for Claude Code — plugins, skills, and hooks
npx claudepluginhub moonsite/moonsite-claude-extensionsAutonomous Jira work tracking, issue creation, and time logging for Claude Code sessions
Markdown-to-HTML converter with auto language detection (RTL/LTR), TOC generation, folder indexes, and Netlify deployment
Moonsite utility skills — version bumping, spec generation, marketplace publishing, plan backup
Structured planning workflow with agentic orchestration. Assess, spec, plan, implement, QA, review, ideate, roadmap — or /orchestrate for full autonomous lifecycle. Any tech stack.
AI persona panel — synthesize expert personas from sources and have them review documents, code, and ideas. Includes live multi-persona discussions with moderator support.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
A comprehensive community-driven collection of 117 AI agents, 174 slash commands, 28 hooks, and 199 MCP servers for Claude Code
A collection of Claude Code extensions by Moonsite — plugins, skills, and hooks for supercharging your Claude Code workflow.
| Plugin | Description | Version |
|---|---|---|
| jira-autopilot | Autonomous Jira work tracking, issue creation, and time logging | 3.19.0 |
| md-html-docs | Auto-generates HTML from markdown in docs/ folders, with Figma/Playwright image capture and index maintenance | 1.0.0 |
| Skill | Description | Version |
|---|---|---|
| moonsite-spec | Generate Word (.docx) technical specifications in Moonsite corporate style | 1.0.0 |
Automatically tracks, documents, and logs your work to Jira. Every task done in Claude Code gets captured — files changed, time spent, work summaries — and posted to your Jira board with minimal manual intervention.
git clone https://github.com/Moonsite/moonsite-claude-extensions.git ~/.claude/plugins/local/jira-autopilot
Register in ~/.claude/plugins/installed_plugins.json:
"jira-autopilot@local": [
{
"scope": "user",
"installPath": "/Users/<you>/.claude/plugins/local/jira-autopilot",
"version": "3.0.0",
"installedAt": "2026-01-01T00:00:00.000Z",
"lastUpdated": "2026-01-01T00:00:00.000Z"
}
]
Enable in ~/.claude/settings.json:
"jira-autopilot@local": true
/jira-setup # Configure Jira connection
/jira-start PROJ-42 # Track existing issue
/jira-start Fix login redirect # Create new issue + track
/jira-status # Show active issues + time
/jira-stop # Log time + work summary
/jira-summary # Today's aggregate report
| Command | Description |
|---|---|
/jira-setup | Configure Jira tracking with guided setup wizard |
/jira-start <KEY-123> | Link to existing issue and start timer |
/jira-start <summary> | Create new Jira issue and start timer |
/jira-stop | Log elapsed time and work summary to Jira |
/jira-status | Show all active issues with time breakdown |
/jira-approve | Review untracked work and create/link Jira issues |
/jira-summary | Show today's aggregated work summary |
Project config (committed): .claude/jira-autopilot.json
| Field | Description | Default |
|---|---|---|
projectKey | Jira project key (e.g., MYPROJ) | — |
cloudId | Atlassian Cloud ID (auto-fetched) | — |
enabled | Enable/disable tracking | true |
autonomyLevel | C (confirm), B (auto-proceed), A (silent) | C |
accuracy | 1-10 scale for time/context sensitivity | 5 |
idleThreshold | Minutes of inactivity before idle detection | 15 |
branchPattern | Regex to extract issue key from branch | ^(?:feature|fix|...)/{key}-\\d+ |
commitPattern | Expected pattern in commit messages | {key}-\\d+: |
debugLog | Enable debug logging to file | false |
Credentials (gitignored): .claude/jira-autopilot.local.json
{
"email": "you@company.com",
"apiToken": "your-api-token",
"baseUrl": "https://company.atlassian.net"
}
Global credentials (optional): ~/.claude/jira-autopilot.global.json — shared across all projects.
Automatically generates HTML whenever you create or edit markdown files in your project's docs/ folder. Includes a skill for manual doc authoring with Figma/Playwright image capture.