QOL plugins for Claude Code by ericfisherdev
npx claudepluginhub ericfisherdev/claude-pluginsJira integration tools for fetching and managing issues, sprints, and agile workflows efficiently
Confluence integration tools for token-efficient page and folder management with caching
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
QOL plugins for Claude Code by ericfisherdev.
Add this marketplace to Claude Code:
claude plugins:add https://github.com/ericfisherdev/claude-plugins
Or install individual plugins:
claude plugins:add ericfisherdev-plugins/jira-tools
| Plugin | Description | Version |
|---|---|---|
| jira-tools | Jira integration tools for issues, sprints, and agile workflows | 1.3.2 |
| confluence-tools | Confluence integration tools for token-efficient page and folder management with caching | 1.2.1 |
Jira integration tools for managing issues, sprints, and agile workflows. Uses shared caching to reduce API calls and provides token-efficient output.
Skills:
| Skill | Description |
|---|---|
/jira-issue | Fetch single issue details with preset-based truncation |
/create-issue | Create Jira issues with cached metadata lookups |
/update-issue | Update issues (status, assignee, labels, comments) |
/search-issues | Search issues using JQL queries |
/link-issues | Create relationships between issues (blocks, duplicates, etc.) |
/watch-issue | Add/remove watchers on issues |
/log-work | Log time entries on issues |
/backlog-summary | Get summary of backlog or sprint issues |
/issue-analysis | Analyze an issue and create implementation plans |
/analyze-backlog | Auto-analyze top 3 unanalyzed backlog issues |
/sprint-info | Get sprint details and issue list |
/sprint-report | Get sprint metrics, velocity, and burndown |
/manage-sprint | Create, start, or complete sprints |
/move-to-sprint | Move issues between sprints or backlog |
Features:
Usage Examples:
# Fetch issue with minimal output
/jira-issue PROJ-123 --preset minimal
# Search for bugs assigned to me
/search-issues --jql "project = PROJ AND type = Bug AND assignee = currentUser()"
# Create a bug
/create-issue --project PROJ --type Bug --summary "Login fails"
# Update issue status
/update-issue PROJ-123 --status "In Progress"
# Log 2 hours of work
/log-work PROJ-123 --time 2h --comment "Fixed authentication"
# Get current sprint info
/sprint-info --board 42 --sprint active
# Move issue to current sprint
/move-to-sprint PROJ-123 --sprint 100
# Analyze an issue for implementation
/issue-analysis PROJ-123
Requirements:
JIRA_BASE_URL, JIRA_EMAIL, JIRA_API_TOKENCache Location:
~/.jira-tools-cache.json
Confluence integration tools for managing wiki pages and folders efficiently. Uses shared caching to reduce API calls and provides token-efficient output.
Skills:
| Skill | Description |
|---|---|
/confluence-page | Fetch single page details with preset-based truncation |
/list-pages | List pages and folders in a space with type indicators ([F]/[P]) |
/create-page | Create Confluence pages with storage format support |
/update-page | Update pages (title, body, labels) with version management |
/create-folder | Create true Confluence folders (not page containers) |
/search-content | Search Confluence using CQL with parent hierarchy info |
/delete-page | Delete pages or folders with auto-detection |
/create-blog-post | Create blog posts with markdown support |
Features:
Usage Examples:
# Fetch page with minimal output
/confluence-page 123456 --preset minimal
# List pages and folders as tree with type indicators
/list-pages --space DEV --depth 2 --format tree
# Create a new page
/create-page --space DEV --title "API Docs" --body "<p>Content here</p>"
# Update page content
/update-page 123456 --body "<p>Updated content</p>"
# Create a true folder
/create-folder --space DEV --title "Documentation"
# Search for pages (includes parent info)
/search-content "authentication" --space DEV
# Delete a page or folder
/delete-page --id 123456
# Create a blog post
/create-blog-post --space DEV --title "Sprint Retrospective" --body-file retro.md --markdown