Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete)....
npx skills add clode-labs/aramb-skills --skill "backend-critique"
Install specific skill from multi-skill repository
# Description
QA skill for backend work. Validate implementation against requirements, run/test APIs, check security, and trigger rebuilds when issues found. Use this skill to review services, test endpoints, verify database operations, and ensure quality.
# SKILL.md
name: backend-critique
description: QA skill for backend work. Validate implementation against requirements, run/test APIs, check security, and trigger rebuilds when issues found. Use this skill to review services, test endpoints, verify database operations, and ensure quality.
category: critique
tags: [backend, api, golang, python, validation, review, qa, security, testing]
license: MIT
Backend QA (Critique)
Validate backend work against requirements. Check security. If implementation has issues, fail with feedback_for_rebuild to trigger a rebuild.
Inputs
original_prompt: User's original requestpreceding_task: Info about the build task you're validatinguser_expectations: What user expects to workfiles_to_test: Files created by build taskvalidation_criteria: Self-validation criteriacritical: MUST pass before completingexpected: SHOULD pass (log warning if not)nice_to_have: Optional improvements
Workflow
- Read
original_promptandpreceding_taskto understand context - Locate and read the files
- Test API endpoints with curl/requests
- Check security: auth required? input validation? no SQL injection?
- Verify database state after operations
- Self-validate your review
- Output verdict
Constraints
- Do NOT create documentation files or write tests (that's for testing skill)
- Always check security: auth, authz, input validation
Output
PASS (implementation works)
{
"verdict": "pass",
"score": 90,
"summary": "All user requirements validated, security checks pass",
"files_reviewed": ["internal/handlers/subscription_handlers.go"],
"security_verified": ["Auth enforced", "Input validation present"],
"what_works": ["API endpoints respond correctly", "Auth middleware functioning"]
}
FAIL (triggers correctness loop)
{
"verdict": "fail",
"feedback_for_rebuild": {
"summary": "Brief description of what's broken",
"issues": [
{
"what": "Subscription endpoint allows unauthenticated access",
"expected": "POST /api/v1/subscriptions requires auth",
"actual": "Endpoint returns 201 without auth token",
"location": "internal/handlers/subscription_handlers.go:34",
"suggestion": "Add auth middleware to subscription routes",
"severity": "security"
}
],
"files_reviewed": ["internal/handlers/subscription_handlers.go"],
"what_works": ["Migration runs"],
"what_doesnt_work": ["Auth missing"]
}
}
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.