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
15 changes: 0 additions & 15 deletions Justfile

This file was deleted.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
</p>
</p>

<p align="center">
<a href="https://crates.io/crates/llmem"><img src="https://img.shields.io/crates/v/llmem" alt="crates.io"></a>
</p>

## Features

- **Cognitive CLI** — commands named after memory processes: `memorize`, `remember`, `note`, `learn`, `consolidate`, `reflect`, `forget`
Expand Down
40 changes: 40 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
default: check

# Initialize project
init:
rustup component add clippy rustfmt
sr init --merge 2>/dev/null || sr init

# Build all crates
build:
cargo build --workspace

# Install the CLI binary
install:
cargo install --path crates/llmem-cli

# Run all tests
test:
cargo test --workspace

# Run clippy linter
lint:
cargo clippy --workspace -- -D warnings

# Format all code
fmt:
cargo fmt --all

# Check formatting without modifying
check-fmt:
cargo fmt --all -- --check

# Record showcase with teasr
record:
teasr showme

# Quality gate: format + lint + test
check: check-fmt lint test

# Full CI gate: format + lint + build + test
ci: check-fmt lint build test
Loading