@lamentis/naome 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +2 -2
- package/README.md +16 -2
- package/crates/naome-cli/Cargo.toml +1 -1
- package/crates/naome-core/Cargo.toml +1 -1
- package/native/darwin-arm64/naome +0 -0
- package/native/linux-x64/naome +0 -0
- package/package.json +1 -1
- package/templates/naome-root/.naome/manifest.json +1 -1
- package/templates/naome-root/.naome/upgrade-state.json +1 -1
package/Cargo.lock
CHANGED
|
@@ -76,7 +76,7 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
|
76
76
|
|
|
77
77
|
[[package]]
|
|
78
78
|
name = "naome-cli"
|
|
79
|
-
version = "1.0.
|
|
79
|
+
version = "1.0.1"
|
|
80
80
|
dependencies = [
|
|
81
81
|
"naome-core",
|
|
82
82
|
"serde_json",
|
|
@@ -84,7 +84,7 @@ dependencies = [
|
|
|
84
84
|
|
|
85
85
|
[[package]]
|
|
86
86
|
name = "naome-core"
|
|
87
|
-
version = "1.0.
|
|
87
|
+
version = "1.0.1"
|
|
88
88
|
dependencies = [
|
|
89
89
|
"serde",
|
|
90
90
|
"serde_json",
|
package/README.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# NAOME
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@lamentis/naome)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
|
|
6
|
-
NAOME gives coding agents a deterministic repository harness:
|
|
6
|
+
NAOME gives coding agents a deterministic repository harness: project intake, task admission, proof gates, Rust-backed next-step decisions, health checks, and Git guardrails so an agent learns a repo before changing it and proves work before committing.
|
|
7
|
+
|
|
8
|
+
Install:
|
|
9
|
+
|
|
10
|
+
```sh
|
|
11
|
+
npm install -g @lamentis/naome
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Set up a repository:
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
naome sync
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Then paste the printed first-run prompt into your coding agent. Use `naome status`, `naome next`, and `naome commit` to inspect state, choose the next safe action, and baseline completed work.
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED