Notre avis
Gère les questions, demandes de fonctionnalités et rapports de bugs pour la bibliothèque connectrpc-axum en vérifiant d'abord la documentation et les tests, puis en créant des issues GitHub si nécessaire.
Points forts
- Répond aux questions en utilisant la documentation du projet avant de suggérer une issue
- Vérifie les bugs avec des tests d'intégration avant de les signaler
- Crée automatiquement des issues GitHub bien formatées avec des labels appropriés
Limites
- Nécessite que l'utilisateur fournisse des étapes de reproduction claires pour les bugs
- Dépend de la qualité et de l'exhaustivité de la documentation locale
- Ne gère que le dépôt GitHub spécifique (frankgreco/connectrpc-axum)
Utilisez cette compétence lorsque vous devez répondre à une question, demander une fonctionnalité ou signaler un bug concernant connectrpc-axum.
Ne l'utilisez pas pour des problèmes génériques de connectrpc ou d'axum qui ne sont pas spécifiques à connectrpc-axum.
Analyse de sécurité
PrudenceThe skill uses the `gh` CLI and shell constructs (`cat <<'EOF'`) to create issues and add labels. While the commands are safe and targeted at a specific repo, any automated shell execution carries a risk of injection if user input is not sanitized. The skill does not instruct exfiltration, disabling safety, or destructive actions, so overall caution is appropriate.
- •Uses `gh` CLI to create GitHub issues, which involves executing shell commands that could be misused if an attacker can influence the issue body or title, though risk is low as it's for a specific repository and supervised.
- •References integration tests and other skills, but does not directly execute arbitrary destructive commands.
Exemples
How do I set a timeout for RPC calls in connectrpc-axum?I think there's a bug when handling streaming requests in connectrpc-axum. The server returns an error after the first message.Could you add support for the gRPC-web protocol in connectrpc-axum?name: submit-issue description: Handle user questions, feature requests, and bug reports for connectrpc-axum. This skill should be used when users ask questions about the library, request new features, or report bugs. It first attempts to answer using project documentation, verifies bugs with integration tests, and submits GitHub issues when needed.
Submit Issue
Handle user questions, feature requests, and bug reports for the connectrpc-axum project.
Workflow
1. Understand the Request
Determine the request type:
- Question: User wants to understand how something works
- Feature Request: User wants new functionality
- Bug Report: User believes something is broken
2. For Questions - Answer First
Before suggesting an issue submission, attempt to answer using project documentation:
- Read
docs/guide/index.mdfor getting started and features overview - Read
docs/guide/architecture.mdfor internal design and module structure - Check other guides in
docs/guide/for specific topics (configuration, compression, timeouts, etc.) - Reference the connect-go-reference skill for protocol details
- Search the codebase for implementation specifics
If the question can be answered from documentation, provide the answer and ask if more clarification is needed.
3. For Bug Reports - Verify First
Before submitting a bug report:
- Reproduce the issue - Ask user for reproduction steps if not provided
- Run integration tests - Use the
/testskill command - Check connect-go behavior - Use connect-go-reference skill to verify expected protocol behavior
- Document findings - Note whether tests pass/fail and any discrepancies
Only proceed to issue submission if the bug is verified or plausible.
4. Submit to GitHub
When issue submission is appropriate, use the gh CLI:
# For bug reports
gh issue create \
--repo "frankgreco/connectrpc-axum" \
--title "Bug: <concise description>" \
--body "$(cat <<'EOF'
## Description
<what's broken>
## Steps to Reproduce
1. <step>
2. <step>
## Expected Behavior
<what should happen>
## Actual Behavior
<what happens instead>
## Environment
- connectrpc-axum version: <version>
- Rust version: <version>
## Additional Context
<test results, connect-go comparison, etc.>
EOF
)"
# For feature requests
gh issue create \
--repo "frankgreco/connectrpc-axum" \
--title "Feature: <concise description>" \
--body "$(cat <<'EOF'
## Description
<what you want>
## Use Case
<why you need it>
## Proposed Solution
<how it might work>
## Alternatives Considered
<other approaches>
EOF
)"
5. Label Issues Appropriately
Add labels based on issue type:
bug- For verified bugsenhancement- For feature requestsquestion- For questions that need discussiondocumentation- For docs improvements
gh issue edit <number> --add-label "bug"
Reference Skills
- connect-go-reference: Use to verify protocol behavior against official Go implementation
- test: Use to run integration tests and verify bugs
Documentation References
When answering questions, check these docs in order:
docs/guide/index.md- Getting started, features, quick startdocs/guide/architecture.md- Internal design, module structure, request flowdocs/guide/configuration.md- Service and handler configurationdocs/guide/examples.md- Code examples and usage patterns- Other topic-specific guides in
docs/guide/(compression, timeouts, tonic integration, etc.) - Codebase search for implementation details
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.