Skip to content

Commit 297872b

Browse files
authored
Merge branch 'master' into release-plz-2026-03-07T12-38-42Z
Signed-off-by: Alex H. Raber <alexhraber@gmail.com>
2 parents b69505c + 3888389 commit 297872b

6 files changed

Lines changed: 45 additions & 9 deletions

File tree

.cargo/config.toml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,20 @@ protocol = "sparse"
3333

3434
# Release profile optimizations
3535
[profile.release]
36-
opt-level = 3
37-
lto = "thin" # Thin LTO: good size reduction, faster than "fat"
38-
codegen-units = 1 # Single codegen unit for better optimization
39-
panic = "abort" # Smaller binary, no unwinding
40-
strip = true # Strip symbols for smaller binary
36+
opt-level = 2 # Slightly less optimization for 30% faster compile
37+
lto = "thin" # Thin LTO: good size reduction, faster than "fat"
38+
codegen-units = 16 # More parallel codegen units = faster compile
39+
panic = "abort" # Smaller binary, no unwinding
40+
strip = true # Strip symbols for smaller binary
41+
42+
# Profile specifically for `cargo install` - optimize for compile speed
43+
[profile.install]
44+
opt-level = 2
45+
lto = "thin"
46+
codegen-units = 16
47+
panic = "abort"
48+
strip = true
49+
incremental = true # Enable incremental for cached rebuilds
4150

4251
# Dev profile: optimize for fast compilation
4352
[profile.dev]

.decapod/generated/artifacts/provenance/artifact_manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"artifacts": [
33
{
44
"path": "README.md",
5-
"sha256": "fb0fa4817ed274ca9221f43df76f8fc191f55bb28022086af6ba40bcdaf2878a"
5+
"sha256": "8755e1e39a5738a7fa1e6740eef68fcc0534acad97ce7c561ee71783e014627f"
66
}
77
],
88
"kind": "artifact_manifest",

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.47.4](https://github.com/DecapodLabs/decapod/compare/v0.47.3...v0.47.4) - 2026-03-07
10+
## [0.47.6](https://github.com/DecapodLabs/decapod/compare/v0.47.3...v0.47.4) - 2026-03-07
1111

1212
### Fixed
1313

1414
- fixes\
15+
## [0.47.5](https://github.com/DecapodLabs/decapod/compare/v0.47.4...v0.47.5) - 2026-03-07
16+
17+
### Other
18+
19+
- Merge pull request #478 from DecapodLabs/agent/unknown/todo-01kk3w-plus-6-1772886360
20+
- Bump Rust to 1.91.1 and optimize cargo install speed
21+
22+
## [0.47.4](https://github.com/DecapodLabs/decapod/compare/v0.47.3...v0.47.4) - 2026-03-07
23+
https://github.com/DecapodLabs/decapod/pull/480/conflict?name=Cargo.toml&ancestor_oid=1ef44710ac168673b8c4a38c4d6cb57566eaa2a2&base_oid=50932162f6a5d01e18a18c2c27671a54d5e6082a&head_oid=d18e26a8a021e05eb988ad43221cb1c97d8fb9f2
24+
### Added
25+
26+
- embed ENGINEERING_EXCELLENCE.md and register in OVERRIDE template
27+
28+
### Other
29+
30+
- refactor constitution files to eliminate role-labeled Oracle sections
31+
- expand the Oracle's Verdict deep into cloud, web, frontend, and methodology
1532

1633
## [0.47.3](https://github.com/DecapodLabs/decapod/compare/v0.47.2...v0.47.3) - 2026-03-07
1734

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "decapod"
3-
version = "0.47.4"
3+
version = "0.47.6"
44
edition = "2024"
55
rust-version = "1.91.1"
66
build = "build/constitution_index.rs"

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,16 @@ cargo install decapod
5656
decapod init
5757
```
5858

59+
### Faster install (recommended)
60+
61+
For significantly faster installation (~30 seconds vs ~5 minutes), use [cargo-binstall](https://github.com/cargo-bins/cargo-binstall):
62+
63+
```bash
64+
cargo install cargo-binstall
65+
cargo binstall decapod
66+
decapod init
67+
```
68+
5969
That's it. Keep using Claude Code, Codex, Gemini CLI, Cursor — whatever you already use. Decapod gets called by your agent automatically when control-plane decisions are needed. Your workflow doesn't change; the agent just gets smarter about when to stop and think.
6070

6171
### What lands in your repo

0 commit comments

Comments
 (0)