ring:implementing-tasks
Implementing a single planned task (T-X.Y.Z) end-to-end: selects the right backend agent by language and service type, drives one TDD RED->GREEN turn, then verifies coverage, lint, license headers, runtime, and delivery before handoff. Runs as Gate 0 before ring:reviewing-code. Use to drive ONE task inside an already-running cycle. Skip when asked to implement a whole tasks.md or multiple tasks (use ring:running-dev-cycle).
What this skill does
# Code Implementation (Gate 0)
## When to use
- Gate 0 of development cycle
- Tasks loaded at initialization
- Ready to write code
## Skip when
- Not inside a development cycle (ring:running-dev-cycle or ring:planning-backend-refactor)
- Task is documentation-only, configuration-only, or non-code
- Implementation already completed for the current gate
## Sequence
**Runs before:** ring:reviewing-code
## Related
**Complementary:** ring:running-dev-cycle, ring:test-driven-development, ring:reviewing-code
You orchestrate. Agents implement. Select the agent, prepare the prompt, track state, validate outputs.
## Step 1: Validate Input
The unit of work is a single task (T-X.Y.Z) from the phased plan, dispatched inline from
under its epic in tasks.md. Its requirements arrive as the task block: Context,
Implementation vision, Files, Verification, and Done when.
Required: `unit_id` (the task's T-X.Y.Z id), `requirements` (the task block), `language` (go|typescript|python), `service_type` (api|worker|batch|cli|frontend|bff).
Optional: `technical_design`, `existing_patterns`, `project_rules_path` (default: `docs/PROJECT_RULES.md`).
STOP if any required input is missing.
## Step 2: Validate Prerequisites
Check `PROJECT_RULES.md` exists at `project_rules_path` → STOP if not found.
**Agent selection:**
| Language | Service Type | Agent |
|----------|--------------|-------|
| go | api, worker, batch, cli | ring:backend-go |
| typescript | api, worker | ring:backend-ts |
| typescript | frontend, bff | ring:bff-ts |
## Step 3: Gate 0 — TDD (RED → GREEN)
Dispatch the selected agent ONCE. The agent writes the failing test, captures the RED failure output as evidence, then implements to GREEN — in one turn.
```yaml
Task:
subagent_type: "{selected_agent}"
description: "Gate 0 TDD (RED→GREEN) for {unit_id}"
prompt: |
## TDD: write a failing test, then make it pass
unit_id: {unit_id}
requirements: {requirements}
language: {language}
service_type: {service_type}
Standards: load via state.cached_standards or WebFetch Ring standards for the language.
Project rules: {project_rules_path}
## Frontend TDD policy (React/Next.js only)
Visual-only components (layout, styling, animations): RED not required — report
"Visual-only → RED skipped; visual checks apply in the frontend flow."
Behavioral components (hooks, validation, state, conditional rendering, API): RED required.
## Multi-Tenant (Go only)
Implement DUAL-MODE from the start. Use resolvers for all resources
(tmcore.GetPGContext, tmcore.GetMBContext, etc.) — they work transparently
in single-tenant and multi-tenant mode. Load multi-tenant.md for patterns.
## Your task
1. Write a test capturing expected behavior; run it; it MUST fail (no implementation yet); capture the failure output.
2. Implement the minimum code to make the test pass; run tests — all pass.
3. Enforce coverage threshold (Ring minimum 85%, PROJECT_RULES may raise it).
4. Create/update docker-compose and .env.example when the service needs local dependencies.
5. Verify local runtime starts cleanly for the changed service path; verify basic health/observability for the changed code.
6. Write delivery verification results.
7. Commit: "{feat|fix|test|chore}(scope): description".
## Required output
- RED: test file path + the actual failure output (MANDATORY — must contain FAIL)
- GREEN: implementation files + test pass output
- Coverage report (must meet threshold)
- Local runtime: docker-compose/.env.example status or explicit "not required"
- Basic health/observability verification
- Delivery verification: requirements delivered, dead-code check, files changed
- Git commit SHA
```
Validate output: the RED failure output must contain "FAIL" (evidence the test failed before implementation existed), and the GREEN output must show PASS with coverage ≥ threshold. Re-dispatch if RED evidence is missing or tests do not pass.
## Step 4: Gate 0 Exit — Delivery Verification
After TDD-GREEN passes, verify delivery:
**Automated checks (run on all files changed by Gate 0):**
```bash
# A. File size (>1500 = FAIL, >1000 = PARTIAL unless cohesion justified)
find . -name "*.go" ! -name "*_test.go" ! -path "*/generated/*" \
-exec wc -l {} + | awk '$1 > 1000'
# B. License headers
for f in $files_changed; do
head -10 "$f" | grep -qiE 'copyright|licensed|spdx|license' || echo "MISSING: $f"
done
# C. Lint (go: golangci-lint; ts: eslint)
golangci-lint run ./... || echo "LINT FAILED"
# D. Coverage (Ring minimum 85%; PROJECT_RULES.md can raise)
# Go example: go test ./... -cover
# TypeScript example: npm test -- --coverage
# E. Local runtime / docker-compose
# If docker-compose.yml is required, verify it can config and start the changed service dependencies.
# F. Migration safety (if SQL migrations changed)
# Check for blocking ops: ADD COLUMN NOT NULL without DEFAULT, DROP COLUMN,
# CREATE INDEX without CONCURRENTLY, ALTER COLUMN TYPE, TRUNCATE
```
**Verdict:**
- PASS: all requirements delivered, 0 dead code, all checks pass
- PARTIAL: some requirements delivered → list gaps, return to Gate 0
- FAIL: critical requirements missing → return to Gate 0 with explicit instructions
## Output Format
```markdown
## Implementation Summary
- unit_id, agent used, TDD phase results
## TDD Results
- RED: test file path + failure output
- GREEN: test pass output + coverage
## Files Changed
- List of created/modified files
## Delivery Verification
- Each requirement: DELIVERED or NOT DELIVERED
- Automated checks: PASS/FAIL per check
## Handoff to Next Gate
- files_changed list for Gate 8 review
- ready_for_review: YES or NO
- Verdict: PASS | PARTIAL | FAIL
```
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.