@hiveai/mcp 0.12.3 → 0.12.4
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/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/dist/server.js +5 -4
- package/dist/server.js.map +1 -1
- package/package.json +3 -3
package/dist/server.js
CHANGED
|
@@ -3920,7 +3920,7 @@ This creates/updates a single rolling recap that **get_briefing automatically su
|
|
|
3920
3920
|
|
|
3921
3921
|
Calling \`mem_session_end\` also **clears the pending-distill marker** (if any), confirming that this session's learnings have been properly captured rather than left as an auto-recap skeleton.
|
|
3922
3922
|
|
|
3923
|
-
### 7. Verify the git/release exit protocol \u2014 always
|
|
3923
|
+
### 7. Verify the git/release/pipeline exit protocol \u2014 always
|
|
3924
3924
|
Run **\`haive enforce finish\`** before your final response.
|
|
3925
3925
|
|
|
3926
3926
|
This executable gate checks the multi-agent git-sync decision:
|
|
@@ -3928,11 +3928,12 @@ This executable gate checks the multi-agent git-sync decision:
|
|
|
3928
3928
|
- shippable package changes have a lockstep version bump
|
|
3929
3929
|
- the release tag \`vX.Y.Z\` exists when a version was bumped
|
|
3930
3930
|
- commits and tags have been pushed
|
|
3931
|
+
- the pushed HEAD's GitHub Actions workflow runs have completed successfully when the repo has a GitHub remote
|
|
3931
3932
|
- agents never run \`npm publish\` (publication remains human-owned)
|
|
3932
3933
|
|
|
3933
|
-
If it blocks, fix the reported Git/version/tag/push issue before telling the developer the task is done.
|
|
3934
|
+
If it blocks, fix the reported Git/version/tag/push/pipeline issue before telling the developer the task is done.
|
|
3934
3935
|
|
|
3935
|
-
When done, respond with a brief summary: "Saved N memories: [list of IDs]. Session recap saved. hAIve finish gate passed."
|
|
3936
|
+
When done, respond with a brief summary: "Saved N memories: [list of IDs]. Session recap saved. hAIve finish gate passed; GitHub Actions passed when applicable."
|
|
3936
3937
|
`;
|
|
3937
3938
|
return {
|
|
3938
3939
|
description: "Post-task reflection: capture what you learned before closing the session",
|
|
@@ -4017,7 +4018,7 @@ When done, respond with: "Imported N memories: [list of IDs]" or "Nothing action
|
|
|
4017
4018
|
// src/server.ts
|
|
4018
4019
|
import { hasRecentBriefingMarker, loadConfigSync } from "@hiveai/core";
|
|
4019
4020
|
var SERVER_NAME = "haive";
|
|
4020
|
-
var SERVER_VERSION = "0.12.
|
|
4021
|
+
var SERVER_VERSION = "0.12.4";
|
|
4021
4022
|
function jsonResult(data) {
|
|
4022
4023
|
return {
|
|
4023
4024
|
content: [
|