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