Skip to content

Commit 3adc4a1

Browse files
FeilixXclaude
andcommitted
fix: separate README for each crate, remove cross-badge confusion
- punkgo-core gets minimal README pointing to punkgo-kernel - punkgo-kernel README drops punkgo-core badge - Bump to v0.2.8 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e37aa3e commit 3adc4a1

6 files changed

Lines changed: 19 additions & 7 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
resolver = "2"
88

99
[workspace.package]
10-
version = "0.2.7"
10+
version = "0.2.8"
1111
edition = "2024"
1212
authors = ["Felix <feijiu@punkgo.ai>"]
1313
license = "MIT"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
[![CI](https://github.com/PunkGo/punkgo-kernel/actions/workflows/ci.yml/badge.svg)](https://github.com/PunkGo/punkgo-kernel/actions/workflows/ci.yml)
66
[![crates.io](https://img.shields.io/crates/v/punkgo-kernel.svg)](https://crates.io/crates/punkgo-kernel)
7-
[![crates.io](https://img.shields.io/crates/v/punkgo-core.svg?label=punkgo-core)](https://crates.io/crates/punkgo-core)
87

98
> When AI does everything for you, who proves you still exist?
109

crates/punkgo-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors.workspace = true
77
license.workspace = true
88
repository.workspace = true
99
rust-version.workspace = true
10-
readme = "../../README.md"
10+
readme = "README.md"
1111
homepage.workspace = true
1212
keywords = ["ai", "audit", "merkle", "agent", "accountability"]
1313
categories = ["cryptography", "development-tools"]

crates/punkgo-core/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# PunkGo Core
2+
3+
[![crates.io](https://img.shields.io/crates/v/punkgo-core.svg)](https://crates.io/crates/punkgo-core)
4+
5+
Core type definitions for [PunkGo](https://punkgo.ai): actors, actions, energy, boundaries, consent, and IPC protocol.
6+
7+
This crate contains no runtime logic — it exists so lightweight consumers (like [punkgo-jack](https://github.com/PunkGo/punkgo-jack)) can depend on protocol types without pulling in the full kernel.
8+
9+
For the full engine, see **[punkgo-kernel](https://crates.io/crates/punkgo-kernel)**.
10+
11+
## License
12+
13+
[MIT](../../LICENSE)

crates/punkgo-kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ default = []
1717
testkit = []
1818

1919
[dependencies]
20-
punkgo-core = { path = "../punkgo-core", version = "0.2.7" }
20+
punkgo-core = { path = "../punkgo-core", version = "0.2.8" }
2121
anyhow.workspace = true
2222
async-trait.workspace = true
2323
serde.workspace = true

0 commit comments

Comments
 (0)