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
11 changes: 0 additions & 11 deletions CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,14 @@ members = [
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.89"
license = "MIT OR Apache-2.0"
authors = ["Caleb Leak <caleb.leak@gmail.com>"]
repository = "https://github.com/cleak/tempyr"
homepage = "https://github.com/cleak/tempyr"
readme = "README.md"
keywords = ["knowledge-graph", "ai", "markdown", "graph", "agents"]
categories = ["development-tools"]

[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Tempyr

[![CI](https://github.com/cleak/tempyr/actions/workflows/ci.yml/badge.svg)](https://github.com/cleak/tempyr/actions/workflows/ci.yml)
[![License: MIT OR Apache-2.0](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](#license)
[![Rust](https://img.shields.io/badge/rust-2024_edition-orange.svg)](https://www.rust-lang.org)
[![Status: experimental](https://img.shields.io/badge/status-experimental-yellow.svg)](#status)
Comment thread
coderabbitai[bot] marked this conversation as resolved.

## Status

> Early, experimental, solo side project. APIs, schemas, and the on-disk
> graph layout may change without notice. Use at your own risk.

Tempyr is a file-based knowledge graph for AI-assisted product and technical
design. It sits between a PRD helper, a project management system, and an
AI-centric task system: graph files are the source of truth, while PRDs, TDDs,
Expand Down Expand Up @@ -67,7 +77,7 @@ tempyr init --no-wizard
Add a node:

```sh
tempyr add feature --id feat-session-replay --status draft --owner caleb --body "Capture and replay user sessions."
tempyr add feature --id feat-session-replay --status draft --owner alice --body "Capture and replay user sessions."
```

Validate the graph:
Expand Down
24 changes: 16 additions & 8 deletions crates/tempyr-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
[package]
name = "tempyr-cli"
description = "Tempyr command-line interface: file-based knowledge graph for AI-assisted product and technical design."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
keywords = ["tempyr", "knowledge-graph", "ai", "agents", "cli"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "tempyr"
path = "src/main.rs"

[dependencies]
tempyr-core = { path = "../tempyr-core" }
tempyr-index = { path = "../tempyr-index" }
tempyr-interview = { path = "../tempyr-interview" }
tempyr-render = { path = "../tempyr-render" }
tempyr-linear = { path = "../tempyr-linear" }
tempyr-mcp = { path = "../tempyr-mcp" }
tempyr-journal = { path = "../tempyr-journal" }
tempyr-journal-index = { path = "../tempyr-journal-index" }
tempyr-core = { path = "../tempyr-core", version = "0.1.0" }
tempyr-index = { path = "../tempyr-index", version = "0.1.0" }
tempyr-interview = { path = "../tempyr-interview", version = "0.1.0" }
tempyr-render = { path = "../tempyr-render", version = "0.1.0" }
tempyr-linear = { path = "../tempyr-linear", version = "0.1.0" }
tempyr-mcp = { path = "../tempyr-mcp", version = "0.1.0" }
tempyr-journal = { path = "../tempyr-journal", version = "0.1.0" }
tempyr-journal-index = { path = "../tempyr-journal-index", version = "0.1.0" }
anyhow = "1"
blake3 = { workspace = true }
clap = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/tempyr-cli/src/commands/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ mod tests {
id: epic-vs
type: epic
status: active
owner: caleb
owner: alice
edges:
- target: feat-chain
type: parent_of
Expand All @@ -520,7 +520,7 @@ Build the core caravan escort loop.
id: feat-chain
type: feature
status: active
owner: caleb
owner: alice
edges:
- target: epic-vs
type: child_of
Expand Down Expand Up @@ -743,7 +743,7 @@ Tune spring/damper parameters for stability.
id: feat-done
type: feature
status: completed
owner: caleb
owner: alice
edges:
- target: task-after
type: decomposes_to
Expand Down
2 changes: 1 addition & 1 deletion crates/tempyr-cli/src/commands/migrate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ mod tests {
fs::create_dir_all(&dir).unwrap();
fs::write(
dir.join(format!("{id}.md")),
format!("---\nid: {id}\ntype: {node_type}\nstatus: draft\nowner: caleb\n---\n# {id}\n"),
format!("---\nid: {id}\ntype: {node_type}\nstatus: draft\nowner: alice\n---\n# {id}\n"),
)
.unwrap();
}
Expand Down
Loading
Loading