-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (34 loc) · 847 Bytes
/
Makefile
File metadata and controls
50 lines (34 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.PHONY: build test check clean install release lint fmt doc serve guardrails
build:
cargo build --workspace
test:
cargo test --workspace
check:
cargo check --workspace
clean:
cargo clean
install:
cargo install --path crates/agentic-forge-cli --force
release:
cargo build --workspace --release
lint:
cargo clippy --workspace -- -D warnings
fmt:
cargo fmt --all
fmt-check:
cargo fmt --all -- --check
doc:
cargo doc --workspace --no-deps
serve:
cargo run -p agentic-forge-cli -- serve --mode stdio
guardrails:
bash scripts/check-canonical-consistency.sh
bash scripts/check-command-surface.sh
bash scripts/check-mcp-consolidation.sh
full-check:
bash scripts/check-canonical-sister.sh
hardening:
bash scripts/check-runtime-hardening.sh
primary:
bash scripts/test-primary-problems.sh
all: fmt-check lint test guardrails