Help us improve
Share bugs, ideas, or general feedback.
From rust-development-pipeline
File a bug report or feature request for the rust-development-pipeline itself, with auto-gathered context from the current project and session. Use when the user says "/file-issue", "file a bug", "report an issue", "this is a pipeline problem", or encounters a pipeline defect during daily use.
npx claudepluginhub tonywu20/my-claude-marketplace --plugin rust-development-pipelineHow this skill is triggered — by the user, by Claude, or both
Slash command
/rust-development-pipeline:file-issueThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Gathers context from the current project and session to file a structured issue on the `TonyWu20/rust-development-pipeline` repository. Lowers friction for reporting pipeline defects encountered during daily use.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Share bugs, ideas, or general feedback.
Gathers context from the current project and session to file a structured issue on the TonyWu20/rust-development-pipeline repository. Lowers friction for reporting pipeline defects encountered during daily use.
/file-issue
No arguments. The skill prompts the user for issue details interactively.
Launch a general-purpose subagent to collect relevant context:
Agent: general-purpose (subagent, discardable context)
Task: Gather context for a pipeline issue report.
Collect the following:
Current pipeline state:
# Check which skills are being used ls skills/*/SKILL.md 2>/dev/nullRecent session activity:
- Read the
.claude/settings.local.jsonfor hooks configuration- Read
hooks/hooks.jsonPipeline version:
git log --oneline -5Current project context (from the working directory where the issue was encountered):
pwd git remote -v 2>/dev/null git log --oneline -3 2>/dev/nullOutput the gathered context as structured data for the issue template.
Format the issue using the GitHub issue template:
---
title: "[pipeline]: <short description>"
---
## Description
{User's description of the problem or feature request}
## Context
- **Pipeline version**: {commit hash from git log}
- **Project**: {current project URL or path}
- **Session**: {what skills were being used when the issue occurred}
## Reproduction Steps
{User-provided or auto-detected steps}
## Expected vs Actual
- **Expected**: {what should happen}
- **Actual**: {what actually happened}
## Environment
- **Pipeline branch**: {current branch}
- **OS**: {auto-detected}
- **Claude Code version**: {if available}
## Relevant Artifacts
{Paths to relevant plan files, directions.json, execution reports, etc.}
Present the formatted issue to the user for review and editing:
"Here's the draft issue for
TonyWu20/rust-development-pipeline:
{ISSUE_BODY}
Please review and edit the description above, then confirm to file the issue. Type 'confirm' to file, or provide changes."
Once the user confirms, file the issue:
gh issue create --repo TonyWu20/rust-development-pipeline --title "<title>" --body "<body>"
Report the resulting issue URL to the user.
Will:
gh CLIWill not: