Skip to content

Commit 53f1808

Browse files
committed
chore: initial public release — Open Dynamic Workflow (odw + pandacode)
Why: open-source the dynamic-workflow runner and its executor as one Cargo workspace, so an agent gets the whole thing out of the box: clone → ./install.sh → odw doctor → run. What: - Monorepo (Cargo workspace): odw/ orchestrates the workflow graph and dispatches every agent() node to an executor; pandacode/ is that executor (codex / claude / bamboo domestic-LLM runtimes) behind one CLI shape. - Fresh single-commit history (internal dogfood history dropped); tree is leak-audited clean (no secrets, paths, or private infra names). - Top-level README/LICENSE/install.sh + one consolidated CI gate (build + test + clippy + odw parity selftest). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 parents  commit 53f1808

100 files changed

Lines changed: 38731 additions & 0 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/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [master, main]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
RUSTFLAGS: "-D warnings"
12+
13+
jobs:
14+
gate:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Install Rust toolchain
19+
uses: dtolnay/rust-toolchain@stable
20+
with:
21+
components: clippy
22+
- name: Install Node (odw selftest runs under cargo test)
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
- name: Cache cargo
27+
uses: actions/cache@v4
28+
with:
29+
path: |
30+
~/.cargo/registry
31+
~/.cargo/git
32+
target
33+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
34+
- name: Build (both crates)
35+
run: cargo build --locked --all-targets
36+
- name: Test (includes odw parity selftest)
37+
run: cargo test --locked
38+
- name: Clippy (warnings = errors)
39+
run: cargo clippy --all-targets -- -D warnings

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Build output (single workspace target at the repo root)
2+
/target
3+
**/target/
4+
5+
# Generated by `odw init` / `odw exec` and by pandacode at runtime — never source
6+
**/.odw/
7+
**/.claude/
8+
**/.pandacode/
9+
10+
# Local secrets / env — never commit
11+
*.env
12+
.env
13+
**/live.env
14+
15+
# Node / OS
16+
**/node_modules/
17+
.DS_Store

0 commit comments

Comments
 (0)