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
4 changes: 2 additions & 2 deletions Architecture.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Architecture

## Multi-agent Safety

Expand Down Expand Up @@ -186,7 +186,7 @@ Or embed as a library and call `steplock::run()` before your own logic.
| ------ | ---------------------------------- | --------------------------------------- |
| Scope | Normalize hook events across tools | Gate actions behind stateful checklists |
| State | Stateless | Stateful (disk-backed) |
| Config | None | `steplock.toml` |
| Config | None | `.steplock/checklists/*/config.toml` |
| Layer | Core SDK | Built on top of polyhook |
| WASM | Yes — detection + serde | No — pure host logic |

Expand Down
2 changes: 1 addition & 1 deletion Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ mv target/release/steplock /usr/local/bin/

```sh
# Cargo
cargo install steplock
cargo install steplock-core
```

---
Expand Down
3 changes: 1 addition & 2 deletions schemas/session-state.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
"transitions": {
"type": "array",
"description": "Valid next state names from current_state. ack.sh validates $1 against this list.",
"items": { "type": "string" },
"minItems": 1
"items": { "type": "string" }
},
"visited": {
"type": "array",
Expand Down
Loading