Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@

## Layout

* *clash* Clash binary + library (includes `src/agents/` for multi-agent protocol adapters, `src/policy_gen/` for shared policy generation definitions)
* *clash* Clash binary + library (includes `src/policy_gen/` for shared policy generation definitions)
* *coding-agent-hooks* Agent-agnostic hook protocol types, agent adapters (Claude, Gemini, Codex, AmazonQ, OpenCode, Copilot), and tool name normalization
* *clash-policy* Policy language: parsing, IR, compilation, and evaluation (extracted from `clash` to break circular dep with `clash-lsp`)
* *clash_starlark* Starlark policy evaluator — compiles `.star` files to JSON policy format
* *clash-plugin* Claude Code plugin (hooks.json, .claude-plugin definitions)
Expand Down
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
"claude_settings",
"clash_starlark",
"clash-lsp",
"coding-agent-hooks",
"clester",
"clash-brush-parser",
"clash-brush-core",
Expand Down Expand Up @@ -160,3 +161,4 @@ clash-policy = { path = "clash-policy", version = "0.7.1" }
clash_notify = { path = "clash_notify", version = "0.7.1" }
clash_starlark = { path = "clash_starlark", version = "0.7.1" }
claude_settings = { path = "claude_settings", version = "0.7.1" }
coding-agent-hooks = { path = "coding-agent-hooks", version = "0.7.1", features = ["clap"] }
1 change: 1 addition & 0 deletions clash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ clash-policy = { workspace = true }
clash_notify = { workspace = true }
clash_starlark = { workspace = true }
claude_settings = { workspace = true }
coding-agent-hooks = { workspace = true }
clash-brush-builtins = { workspace = true }
clash-brush-core = { workspace = true }
clash-brush-interactive = { workspace = true }
Expand Down
Loading
Loading