or browse the library
66 items available
Plan (6)
Gather Requirements
Interview-driven requirements elicitation with structured output
Write User Stories
Convert requirements into well-structured user stories with acceptance criteria and MoSCoW prioritization
Plan Sprint
Facilitate sprint planning: review goals, check capacity, select stories, break down tasks
Refine Backlog
Facilitate backlog refinement by clarifying stories, estimating effort, splitting large items, and reprioritizing
Assess Impact
Analyze the impact of a proposed change across scope, timeline, risk, and stakeholders
Run Retrospective
Facilitate a sprint retrospective to identify improvements and produce action items
Design (6)
Design Solution
Produce a technical architecture covering components, data flow, patterns, and trade-offs
Design API Contract
Design a REST or GraphQL API contract with resources, endpoints, error handling, and OpenAPI spec
Design Database Schema
Design a database schema with entities, relationships, normalization, indexes, and DDL
Design Multitenant Access
Choose an isolation model, define tenant context propagation, and plan cross-tenant safety tests
Write ADR
Create an Architecture Decision Record documenting a technical decision and its consequences
Interview Stakeholders
Conduct a structured stakeholder interview focused on technical constraints and quality attributes
Build (14)
Implement Feature
Guide a developer from a ticket, spec, or idea to working code with tests
Implement with TDD
Build a feature using the red-green-refactor cycle: failing test first, then implement, then refactor
Refactor Code
Improve code structure, readability, or performance without changing behavior
Fix Bug
Diagnose and fix a bug: reproduce, write regression test, find root cause, fix, verify
Add Tests
Analyze existing untested code, identify gaps, and write tests to improve coverage
Write Database Migration
Create a database schema migration with rollback support for tables, columns, indexes, and data
Implement React Feature
Build a React feature end-to-end: components, query hooks, store slice, i18n keys, tests, and a11y check
Implement Flutter Feature
Build a Flutter feature with Clean Architecture: data/domain/presentation layers, BLoC, DI, and tests
Add i18n Keys
Extract user-visible strings into translation keys with placeholders and pluralization across locales
Write MyBatis Mapper
Create a MyBatis mapper: interface, XML with result map and parameter binding, and a unit test
Write Kafka Consumer
Implement a Spring Kafka listener with error handling, retry topic, DLQ, idempotency, and integration test
Write Kafka Producer
Implement a Spring Kafka producer with idempotence, acks=all, metrics, and integration test
Configure SAML SSO
Wire Proxied SAML SSO: SP metadata, filter chain, signing/encryption, IdP test, feature-flag rollout
Configure Feature Flag
Add a feature flag with default, rollout strategy, logging, metrics, and cleanup ticket
Verify (12)
Review Code
Structured code review covering correctness, readability, security, and test coverage
Create Test Strategy
Build a comprehensive test strategy with test types, coverage targets, and tooling
Create Test Cases
Generate structured test cases from requirements across happy path, error, and edge conditions
Write Bug Report
Create a structured, actionable bug report with reproduction steps and severity classification
Check Security
Security audit covering dependency vulnerabilities, OWASP Top 10, auth patterns, and secrets exposure
Analyze Test Quality
Assess test coverage and quality by reviewing metrics, test patterns, and gaps
Migrate Selenium to Playwright
Port a Selenium test suite to Playwright: locators, auto-wait, fixtures, traces, and CI wiring
Write Vitest Component Test
Write a React component test with Vitest and React Testing Library using accessible queries and user-event
Check Accessibility
Run the accessibility gate: automated axe checks plus keyboard/screen-reader smoke and prioritized findings
Write BLoC Test
Write blocTest cases for a Flutter BLoC: seed state, events, expected state sequences with mocked dependencies
Write Widget Test
Write a Flutter widget test with testWidgets: pump cycles, finders, and assertions on rendered output
Write Robot Integration Test
Add a robot-pattern integration test: new robot class with action/assert API, composed scenario, device run
Deliver (6)
Prepare Pull Request
Prepare a polished PR with description, self-review checklist, and CI verification
Resolve PR Comments
Systematically address PR review feedback by categorizing, resolving, and re-requesting review
Complete Feature
Full feature handoff: final verification, ticket updates, documentation, and team notification
Write Documentation
Write clear, well-structured technical documentation tailored to audience and purpose
Generate Diagrams
Generate architecture, flow, and relationship diagrams using Mermaid, PlantUML, or ASCII art
Write CalVer Release Notes
Assemble release notes for a CalVer release train: grouped changes, git tag, publication
Operate (4)
Investigate Incident
Investigate a production incident: gather facts, analyze logs, identify root cause, produce remediation plan
Setup Monitoring
Configure observability: logging, metrics, alerts, and dashboards tailored to your stack and SLOs
Setup MCP Servers
Configure Model Context Protocol servers to connect your AI coding tool to Jira, GitHub, databases, and custom APIs
Configure ArgoCD Deploy
Create an ArgoCD Application with sync policy, waves, health checks, and documented rollback path
Learn (2)
Explore Codebase
Systematically understand an unfamiliar codebase by mapping structure, tracing flows, and documenting patterns
Onboard to Project
Deep interactive onboarding: study the project, create a knowledge base, give an architecture tour, set up the environment, and guide a first contribution