@kody-ade/kody-engine 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,98 @@
1
+ {
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "instructions": [],
4
+ "provider": {
5
+ "minimax": {
6
+ "options": {
7
+ "baseURL": "http://localhost:8080/v1",
8
+ "apiKey": "mock-key"
9
+ }
10
+ }
11
+ },
12
+ "agent": {
13
+ "build": {
14
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
15
+ "description": "Building features, refactoring, implementing changes"
16
+ },
17
+ "plan": {
18
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
19
+ "description": "Planning tasks, architecture design, complex problem solving"
20
+ },
21
+ "architect": {
22
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
23
+ "description": "Planning tasks, architecture design, complex problem solving"
24
+ },
25
+ "clarify": {
26
+ "model": "openai/gpt-5.2",
27
+ "description": "Collects operator questions and answers"
28
+ },
29
+ "taskify": {
30
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
31
+ "description": "Converts free-text tasks into structured task.json for pipeline routing"
32
+ },
33
+ "gap": {
34
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
35
+ "description": "Analyzes spec.md for gaps, missing info, and inconsistencies"
36
+ },
37
+ "plan-gap": {
38
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
39
+ "description": "Analyzes plan for gaps vs spec and codebase, auto-revises plan"
40
+ },
41
+ "autofix": {
42
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
43
+ "description": "Automatically fixes lint, type, and format errors from verify stage"
44
+ },
45
+ "verify": {
46
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
47
+ "description": "Runs tests, validates implementation passes all gates"
48
+ },
49
+ "test": {
50
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
51
+ "description": "Writes E2E and integration tests using Playwright"
52
+ },
53
+ "advisor": {
54
+ "model": "openai/gpt-5.2",
55
+ "description": "Code review, suggestions, best practices"
56
+ },
57
+ "pr": {
58
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
59
+ "description": "Creates branch, commits changes, opens pull request"
60
+ },
61
+ "kody-expert": {
62
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
63
+ "description": "Kody pipeline expert - understands pipeline execution, debugging, adding new stages",
64
+ "instructions": [".opencode/docs/PIPELINE.md"]
65
+ },
66
+ "build-manager": {
67
+ "model": "anthropic/claude-opus-4-6",
68
+ "description": "Orchestrates build and test-writer agents in parallel, handles retries and verification"
69
+ },
70
+ "test-writer": {
71
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
72
+ "description": "TDD test writer - writes failing tests before implementation"
73
+ },
74
+ "browser": {
75
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
76
+ "description": "Browser agent - navigates A-Guy platform, inspects pages, answers UI questions. Uses Chrome DevTools MCP locally, Playwright MCP in CI.",
77
+ "instructions": [".opencode/docs/BROWSER_AUTOMATION.md"]
78
+ },
79
+ "review": {
80
+ "model": "anthropic/claude-opus-4-6",
81
+ "description": "Architect-level code review of generated code for quality, security, and correctness"
82
+ },
83
+ "fix": {
84
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
85
+ "description": "Targeted fixes for issues found by review or verify stages"
86
+ },
87
+ "reflect": {
88
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
89
+ "description": "Post-task reflection - extracts patterns, updates knowledge base, creates skills when patterns repeat"
90
+ },
91
+ "e2e-test-writer": {
92
+ "model": "minimax-coding-plan/MiniMax-M2.7-highspeed",
93
+ "description": "Writes Playwright E2E tests for UI changes. Tests committed but NOT run in pipeline — CI runs them on PR."
94
+ }
95
+ },
96
+ "mcp": {}
97
+
98
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kody-ade/kody-engine",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Kody CI/CD pipeline engine — multi-agent pipeline for GitHub repos",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -13,7 +13,7 @@
13
13
  "opencode"
14
14
  ],
15
15
  "scripts": {
16
- "copy:opencode": "rm -rf opencode && mkdir -p opencode && cp -r ../../.opencode/agents ../../.opencode/docs opencode/",
16
+ "copy:opencode": "rm -rf opencode && mkdir -p opencode && cp -r ../../.opencode/agents ../../.opencode/docs ../../opencode.json opencode/",
17
17
  "build": "tsup",
18
18
  "prepublishOnly": "pnpm build && pnpm copy:opencode"
19
19
  },