Skip to content

Commit 5d09fc6

Browse files
committed
add root README with marketplace install and plugin catalog
Follows cc-foundry pattern: one-liner, marketplace install command, per-plugin problem/solution description with install snippet. Kensai entry covers the four-phase pipeline and links to the published npm package.
1 parent 96ec10a commit 5d09fc6

3 files changed

Lines changed: 69 additions & 0 deletions

File tree

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# yatai
2+
3+
Gaijin Entertainment's plugin marketplace for AI coding tools.
4+
5+
Plugins built for internal workflows — code review pipelines, development automation, quality enforcement — published
6+
for anyone to use.
7+
8+
## Installation
9+
10+
Add the marketplace, then install any plugin:
11+
12+
```
13+
/plugin marketplace add GaijinEntertainment/yatai
14+
/plugin install <plugin-name>
15+
```
16+
17+
## Plugins
18+
19+
### kensai
20+
21+
Multi-agent code review with adversarial falsification. Parallel reviewers surface issues; a prover applies
22+
falsification gates to filter false positives. Orchestrated by a stateful MCP server
23+
([`@gaijin/kensai-review-mcp`](https://www.npmjs.com/package/@gaijin/kensai-review-mcp)).
24+
25+
Requires Node.js 26+ and agent teams (`CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1`).
26+
27+
```
28+
/plugin install kensai
29+
```
30+
31+
## Requirements
32+
33+
- [Claude Code](https://claude.com/claude-code) with plugin marketplace support
34+
- Node.js 26+ (for MCP server plugins)
35+
36+
## License
37+
38+
MIT

claude/kensai/mcp/review/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# @gaijin/kensai-review-mcp
2+
3+
Stateful MCP server for the [kensai](https://github.com/GaijinEntertainment/yatai/tree/main/claude/kensai) multi-agent
4+
code review pipeline.
5+
6+
Provides 24 tools across 4 toolsets (session lifecycle, filesystem, git, findings) with phase-enforced state machine,
7+
paginated context delivery, and scoped filesystem access.
8+
9+
## Usage
10+
11+
This package is consumed as an MCP server via the kensai Claude Code plugin. Install the plugin:
12+
13+
```
14+
/plugin marketplace add GaijinEntertainment/yatai
15+
/plugin install kensai
16+
```
17+
18+
Or run standalone:
19+
20+
```
21+
npx @gaijin/kensai-review-mcp
22+
```
23+
24+
## Requirements
25+
26+
- Node.js 26+
27+
28+
## License
29+
30+
MIT

claude/kensai/mcp/review/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env node
12
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
23
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
34

0 commit comments

Comments
 (0)