Skip to content

Commit aae676d

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 aae676d

2 files changed

Lines changed: 39 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/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)