Skip to content

Commit 7a599b7

Browse files
authored
Merge pull request #380 from ruvnet/feature/adr-159-rvagent-a2a
ADR-159: A2A Protocol Support for rvAgent + workspace clippy/fmt cleanup
2 parents e1e7b04 + f6c684a commit 7a599b7

323 files changed

Lines changed: 39905 additions & 1101 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/clippy-fmt.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Clippy + fmt
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
env:
9+
CARGO_TERM_COLOR: always
10+
RUST_BACKTRACE: 1
11+
12+
jobs:
13+
clippy:
14+
name: Clippy (deny warnings)
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 30
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Install system dependencies
21+
run: sudo apt-get update && sudo apt-get install -y libfontconfig1-dev
22+
23+
- name: Install Rust stable
24+
uses: dtolnay/rust-toolchain@stable
25+
with:
26+
components: clippy
27+
28+
- name: Cache Rust
29+
uses: Swatinem/rust-cache@v2
30+
31+
- name: Clippy (workspace, deny warnings)
32+
run: cargo clippy --workspace --all-targets --no-deps -- -D warnings
33+
34+
fmt:
35+
name: Rustfmt
36+
runs-on: ubuntu-latest
37+
timeout-minutes: 30
38+
steps:
39+
- uses: actions/checkout@v4
40+
41+
- name: Install Rust stable
42+
uses: dtolnay/rust-toolchain@stable
43+
with:
44+
components: rustfmt
45+
46+
- name: Check formatting
47+
run: cargo fmt --all --check

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ claude-flow
8888
# Removed Windows wrapper files per user request
8989
hive-mind-prompt-*.txt
9090

91+
# Agent worktree directories (runtime-only, per-agent isolation)
92+
.claude/worktrees/
93+
9194
# Native intelligence database (binary)
9295
.claude/intelligence/data/intelligence.db
9396

0 commit comments

Comments
 (0)