Skip to content

Commit 3c31b0c

Browse files
Matthew Neirynckclaude
authored andcommitted
Prepare for crates.io publish
Add publish metadata (repository, homepage, documentation, keywords, categories), include directive, versioned context-core dependency, and README badges. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b676432 commit 3c31b0c

2 files changed

Lines changed: 20 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,28 @@ name = "context-cli"
33
version = "0.1.0"
44
edition = "2021"
55
license = "Apache-2.0"
6-
description = "CLI for the Context platform"
6+
description = "CLI for building, resolving, and inspecting context caches"
7+
repository = "https://github.com/contextenginehq/context-cli"
8+
homepage = "https://github.com/contextenginehq/context-engine"
9+
documentation = "https://docs.rs/context-cli"
10+
readme = "README.md"
11+
keywords = ["context", "cli", "deterministic", "mcp", "llm"]
12+
categories = ["command-line-utilities"]
13+
14+
include = [
15+
"src/**",
16+
"Cargo.toml",
17+
"README.md",
18+
"LICENSE",
19+
"NOTICE",
20+
]
721

822
[[bin]]
923
name = "context"
1024
path = "src/main.rs"
1125

1226
[dependencies]
13-
context-core = { path = "../context-core" }
27+
context-core = { version = "0.1.0", path = "../context-core" }
1428
anyhow = "1.0"
1529
clap = { version = "4.5", features = ["derive"] }
1630
serde = { version = "1.0", features = ["derive"] }

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# context-cli
22

3+
[![Crates.io](https://img.shields.io/crates/v/context-cli.svg)](https://crates.io/crates/context-cli)
4+
[![Docs.rs](https://docs.rs/context-cli/badge.svg)](https://docs.rs/context-cli)
5+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)
6+
37
Command-line interface for the Context platform.
48

59
`context-cli` is the simplest way to build, inspect, and query Context caches locally or in CI. It is deterministic, scriptable, and designed for automation.

0 commit comments

Comments
 (0)