Delegate testing, QA, and code review tasks to Opencode CLI using Kimi K2.5 model via markdown file handoff. Write test request to TASK.md, Opencode with Kimi K2.5 generates tests/reviews, outputs to...
Legacy Claude-only orchestration skill. This is not part of the standard production harness policy. It is excluded from the shared multi-harness corpus and should be used only when the user explicitly requests Kimi or Opencode/Kimi.
When the user explicitly requests Kimi or Opencode/Kimi, delegate the requested testing, quality assurance, or code review task to Opencode CLI using the Kimi K2.5 model. Write task instructions to TASK.md, invoke Opencode with Kimi K2.5, then read OUTPUT.md for results.
Claude Code Opencode CLI + Kimi K2.5
| |
+-- Write TASK.md ------------------+
| (test/review requirements) |
| |
+-- Execute: opencode run -m |
| opencode/kimi-k2.5-free |
| "Read TASK.md..." |
| |
| +-- Reads TASK.md
| +-- Generates tests/review
| +-- Writes OUTPUT.md
| |
+-- Read OUTPUT.md <----------------+
| (tests + findings + results) |
v v
Benefits:
Codex is the production-supported second harness for this repository. Use this legacy Kimi path only when the user explicitly asks for Kimi or Opencode/Kimi.
| Model | Provider | Use Case | Status |
|---|---|---|---|
opencode/kimi-k2.5-free |
Opencode (Moonshot) | Legacy explicit-request path; free tier | Verified |
opencode/kimi-k2.5 |
Opencode (Moonshot) | Paid tier with higher rate limits | Available |
togetherai/moonshotai/Kimi-K2.5 |
Together.ai | Alternative provider | Verified |
togetherai/moonshotai/Kimi-K2-5 |
Together.ai | Alternative naming convention | Available |
Default within this explicit legacy skill: opencode/kimi-k2.5-free.
Kimi K2.5 is kept here for historical workflows that specifically require it:
opencode/kimi-k2.5-free) when:togetherai/moonshotai/Kimi-K2.5) when:opencode run -m opencode/kimi-k2.5-free \
"Read TASK.md in the current directory. Follow the testing instructions. Write all results to OUTPUT.md."
opencode run -m togetherai/moonshotai/Kimi-K2.5 \
"Read TASK.md in the current directory. Follow the testing instructions. Write all results to OUTPUT.md."
# Start opencode TUI with Kimi K2.5 (Opencode)
cd /path/to/project && opencode . -m opencode/kimi-k2.5-free
# Or with Together.ai
cd /path/to/project && opencode . -m togetherai/moonshotai/Kimi-K2.5
# Create a prompt file
echo "Generate unit tests for the Calculator class" > prompt.txt
cat prompt.txt | opencode run -m opencode/kimi-k2.5-free
| Flag | Purpose |
|---|---|
-m, --model |
Model to use (e.g., opencode/kimi-k2.5-free) |
-C, --continue |
Continue the last session |
-s, --session |
Session ID to resume |
--prompt |
Initial prompt to send |
-h, --help |
Show help |
# Task: [Test Generation / Code Review / QA]
## Objective
[Clear statement of testing/review goal]
### Examples:
- Generate unit tests for user authentication module
- Review payment processing code for security issues
- Create integration tests for API endpoints
- Perform QA verification of search functionality
## Code to Test/Review
### File: src/auth/login.ts
```typescript
// Paste code here
// Paste supporting code
Rate findings: CRITICAL | HIGH | MEDIUM | LOW
tests/ or __tests__/ directory[filename].test.[ext] or [filename].spec.[ext]Write to OUTPUT.md:
## Output File Template (OUTPUT.md)
Instruct Opencode with Kimi K2.5 to produce:
```markdown
# Results: [Task Title]
## Summary
[Brief overview of what was accomplished]
## Generated Tests (if applicable)
### Test Files Created
| File | Description | Coverage |
|------|-------------|----------|
| `tests/auth/login.test.ts` | Unit tests for login | 95% |
| `tests/auth/validate.test.ts` | Validation tests | 88% |
### Test Scenarios
#### Happy Path
1. [Test case description]
- Input: [example input]
- Expected: [expected output]
#### Edge Cases
1. [Edge case description]
- Input: [boundary value]
- Expected: [expected behavior]
#### Error Cases
1. [Error scenario]
- Input: [invalid input]
- Expected: [error handling]
## Review Findings (if applicable)
| Severity | Location | Issue | Recommendation |
|----------|----------|-------|----------------|
| CRITICAL | login.ts:45 | SQL injection | Use parameterized queries |
| HIGH | auth.ts:23 | Missing rate limiting | Add rate limiter |
| MEDIUM | users.ts:78 | No input validation | Add Zod validation |
| LOW | utils.ts:12 | Magic number | Extract constant |
## Code Coverage Analysis
- **Overall:** 87%
- **Critical paths:** 95%
- **Uncovered lines:** [list of uncovered code sections]
## Issues Encountered
- [Any problems and resolutions]
## Recommendations
1. [Priority action items]
2. [Secondary improvements]
3. [Testing best practices to adopt]
## Session
Session ID: `<session_id>` (for follow-up)
# Task: Generate Unit Tests for User Authentication
## Objective
Create comprehensive unit tests for the user authentication module covering login, registration, and password reset.
## Code to Test
### File: src/auth/auth.service.ts
```typescript
export class AuthService {
async login(email: string, password: string): Promise<AuthResult> {
const user = await this.userRepo.findByEmail(email);
if (!user) throw new UnauthorizedError('Invalid credentials');
const valid = await bcrypt.compare(password, user.passwordHash);
if (!valid) throw new UnauthorizedError('Invalid credentials');
const token = jwt.sign({ userId: user.id }, process.env.JWT_SECRET);
return { token, user: this.sanitizeUser(user) };
}
async register(email: string, password: string): Promise<User> {
const existing = await this.userRepo.findByEmail(email);
if (existing) throw new ConflictError('Email already exists');
const hash = await bcrypt.hash(password, 10);
return this.userRepo.create({ email, passwordHash: hash });
}
}
tests/auth/Write to OUTPUT.md with test scenarios, generated test code, coverage analysis, and any edge cases identified.
#### 2. Execute Opencode with Kimi K2.5
```bash
opencode run -m opencode/kimi-k2.5-free \
"Read TASK.md in the current directory. Follow the instructions to generate comprehensive unit tests. Write all results to OUTPUT.md."
Review the generated tests, verify coverage, and integrate into the test suite.
# Task: Security Review of Payment Processing
## Objective
Perform security-focused code review of payment processing module.
## Code to Review
### File: src/payments/payment.service.ts
[Code here...]
## Review Criteria
Rate findings: CRITICAL | HIGH | MEDIUM | LOW
### Security Focus
- Input validation
- SQL injection risks
- Authentication/authorization
- Sensitive data handling
- PCI compliance
## Context
- B2B SaaS application
- Handles credit card data
- SOC2 compliance required
## Output Format
Write security findings to OUTPUT.md with severity ratings and specific fix recommendations.
opencode run -m opencode/kimi-k2.5-free \
"Read TASK.md, perform security review following the criteria, write findings to OUTPUT.md"
Read OUTPUT.md and address the identified security issues.
# For Opencode provider (Moonshot AI)
MOONSHOT_API_KEY=xxx # Kimi models via Opencode (if needed)
# For Together.ai provider
TOGETHER_API_KEY=xxx # Kimi models via Together.ai
# Alternative providers
OPENAI_API_KEY=xxx # OpenAI models
GEMINI_API_KEY=xxx # Google Gemini models
Note: Set the appropriate API key for your chosen provider. Opencode will use the key matching the model provider prefix (e.g., togetherai/* models need TOGETHER_API_KEY).
| Limit | Value (Free Tier) |
|---|---|
| Requests/minute | 60 |
| Requests/day | 2,000 |
| Tokens/request | 128K context window |
| Limit | Value |
|---|---|
| Requests/minute | Varies by plan |
| Requests/day | Varies by plan |
| Tokens/request | 128K context window |
Note: Together.ai rate limits depend on your account tier. Check your Together.ai dashboard for current limits.
| Provider | Model Path | API Key | Free Tier |
|---|---|---|---|
| Opencode | opencode/kimi-k2.5-free |
Not needed* | 2,000 req/day |
| Opencode | opencode/kimi-k2.5 |
Not needed* | Paid |
| Together.ai | togetherai/moonshotai/Kimi-K2.5 |
TOGETHER_API_KEY |
Varies |
*Opencode may use built-in credits or require authentication via opencode auth
Consult references/comparison-and-troubleshooting.md for model comparison (Kimi vs Gemini vs Codex), integration patterns, usage tips, troubleshooting, and session management.
Skills (related workflows):
dev_invoke_codex-cli -- Alternative: Codex CLI for deep reasoningdev_invoke_gemini-cli -- Alternative: Gemini CLI for large contextqa_review_triple-model -- Uses this skill as one of three reviewers