@hiveai/core 0.9.9 → 0.9.10
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/README.md +11 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @hiveai/core
|
|
2
2
|
|
|
3
|
-
> Internal library —
|
|
3
|
+
> Internal library — policy, memory, anchor, and enforcement primitives for hAIve.
|
|
4
4
|
|
|
5
5
|
This package is consumed by `@hiveai/cli` and `@hiveai/mcp`. You do **not** need to install it directly unless you are building a custom hAIve integration or extending the tool.
|
|
6
6
|
|
|
@@ -8,6 +8,16 @@ This package is consumed by `@hiveai/cli` and `@hiveai/mcp`. You do **not** need
|
|
|
8
8
|
|
|
9
9
|
## What this package provides
|
|
10
10
|
|
|
11
|
+
### Enforcement primitives
|
|
12
|
+
|
|
13
|
+
Core owns the durable types and local runtime markers used by hAIve policy gates:
|
|
14
|
+
|
|
15
|
+
- `.ai/haive.config.json` config loading/merging
|
|
16
|
+
- strict enforcement settings (`requireBriefingFirst`, session recap, memory verification, stale-decision blocking)
|
|
17
|
+
- briefing markers under `.ai/.runtime/enforcement/briefings/`
|
|
18
|
+
- anchor verification for stale decisions and gotchas
|
|
19
|
+
- path resolution for project, memory, runtime, and module directories
|
|
20
|
+
|
|
11
21
|
### Memory schema (Zod)
|
|
12
22
|
|
|
13
23
|
A single source of truth for the memory frontmatter format:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiveai/core",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "hAIve core —
|
|
3
|
+
"version": "0.9.10",
|
|
4
|
+
"description": "hAIve core — policy, memory, anchor, and enforcement primitives",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
"homepage": "https://github.com/Doucs91/hAIve#readme",
|
|
13
13
|
"keywords": [
|
|
14
14
|
"ai",
|
|
15
|
+
"enforcement",
|
|
16
|
+
"policy",
|
|
15
17
|
"memory",
|
|
16
18
|
"mcp",
|
|
17
19
|
"haive",
|