@kyo-so/cli 0.3.0 → 0.4.1
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.
- package/CHANGELOG.md +80 -0
- package/README.ja.md +2 -0
- package/README.md +2 -0
- package/README.zh-CN.md +2 -0
- package/dist/bin/kyoso.js +11872 -8064
- package/dist/core/constants.d.ts +1 -1
- package/dist/index.js +40 -19
- package/package.json +13 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.4.1] - 2026-07-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated `@modelcontextprotocol/server` to 2.0.0-beta.2 and
|
|
13
|
+
`@agentclientprotocol/sdk` to 1.1.0. Before release, the MCP stdio server
|
|
14
|
+
handshake was smoke-tested against beta.2 and a full multi-agent review run
|
|
15
|
+
was verified with real Codex and Claude agents on the updated ACP stack.
|
|
16
|
+
|
|
17
|
+
## [0.4.0] - 2026-07-07
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Pinned default ACP adapter versions (`@agentclientprotocol/codex-acp@1.1.0`,
|
|
22
|
+
`@agentclientprotocol/claude-agent-acp@0.57.0`) so adapter updates ship
|
|
23
|
+
through deliberate Kyoso releases instead of being fetched as `latest` at
|
|
24
|
+
runtime. Overrides via `kyoso.config.ts` still work.
|
|
25
|
+
- Version consistency enforcement: `bun test` and `pack:verify` fail when the
|
|
26
|
+
MCP server version constant drifts from `package.json`, and release builds
|
|
27
|
+
fail when the git tag does not match the package version.
|
|
28
|
+
- CI and release workflows install dependencies through Aikido safe-chain,
|
|
29
|
+
blocking known-malicious package versions before they execute.
|
|
30
|
+
- `repository`, `homepage`, and `bugs` metadata in `package.json` (required
|
|
31
|
+
for provenance validation).
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- Releases are now published via npm trusted publishing (OIDC) from GitHub
|
|
36
|
+
Actions with provenance attestation. Verify with `npm audit signatures`.
|
|
37
|
+
|
|
38
|
+
## [0.3.0] - 2026-07-07
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Single-agent mode: Kyoso now works when only Claude or only Codex is
|
|
43
|
+
available. The remaining backend runs once as `combined_reviewer`, covering
|
|
44
|
+
both implementation and architecture/security focus areas.
|
|
45
|
+
- `reviewMode` (`multi_agent` / `single_agent`) and `agentsUsed` in JSON
|
|
46
|
+
output; Markdown output states when cross-model verification was not
|
|
47
|
+
performed and marks Disagreements as N/A.
|
|
48
|
+
- `kyoso doctor` and `kyoso setup` suggest a single-agent config when only
|
|
49
|
+
one backend command is found on PATH.
|
|
50
|
+
- `examples/claude-only.config.ts` and `examples/codex-only.config.ts`.
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
|
|
54
|
+
- Agent role prompts are driven by `agents.<name>.role` in `kyoso.config.ts`
|
|
55
|
+
instead of being hardcoded per agent name. Default configs behave the same;
|
|
56
|
+
customized `role` values now take effect.
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- The MCP server reports the correct package version (previously stuck at
|
|
61
|
+
0.1.0).
|
|
62
|
+
|
|
63
|
+
## [0.2.0] - 2026-07-05
|
|
64
|
+
|
|
65
|
+
### Added
|
|
66
|
+
|
|
67
|
+
- `kyoso setup codex` / `kyoso setup claude-code` for one-command MCP
|
|
68
|
+
registration and review-skill installation.
|
|
69
|
+
- Quick Start documentation and expanded `kyoso doctor` diagnostics.
|
|
70
|
+
- Japanese and Simplified Chinese READMEs.
|
|
71
|
+
|
|
72
|
+
## [0.1.0] - 2026-07-05
|
|
73
|
+
|
|
74
|
+
### Added
|
|
75
|
+
|
|
76
|
+
- Initial public release: MCP-native, ACP-powered multi-agent review gate
|
|
77
|
+
coordinating Codex and Claude reviewers for plan review, CISA Secure by
|
|
78
|
+
Design security review, and diff review.
|
|
79
|
+
- Deterministic decision gates, secret scanning with redaction, read-only
|
|
80
|
+
temp-snapshot workspaces, and JSONL audit traces.
|
package/README.ja.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Kyo-so
|
|
2
2
|
|
|
3
|
+
[](https://deepwiki.com/hokupod/kyoso)
|
|
4
|
+
|
|
3
5
|
[English](README.md) | [日本語](README.ja.md) | [简体中文](README.zh-CN.md)
|
|
4
6
|
|
|
5
7
|
Kyo-so (Kyoso / 協奏) is an MCP-native, ACP-powered multi-agent review gate for AI coding workflows.
|