hyperstack-core 1.2.0 → 1.5.0

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/index.js CHANGED
@@ -1,18 +1,19 @@
1
- /**
2
- * hyperstack-core
3
- *
4
- * Typed graph memory for AI agents.
5
- *
6
- * Usage:
7
- * import { HyperStackClient } from "hyperstack-core";
8
- * const hs = new HyperStackClient({ apiKey: "hs_..." });
9
- * await hs.store({ slug: "use-clerk", title: "Use Clerk for auth", cardType: "decision" });
10
- * await hs.blockers("deploy-prod"); // → typed blockers
11
- *
12
- * OpenClaw:
13
- * import { createOpenClawAdapter } from "hyperstack-core/adapters/openclaw";
14
- * const adapter = createOpenClawAdapter({ agentId: "researcher" });
15
- */
16
-
17
- export { HyperStackClient } from "./src/client.js";
18
- export { createOpenClawAdapter } from "./adapters/openclaw.js";
1
+ /**
2
+ * hyperstack-core
3
+ *
4
+ * Typed graph memory for AI agents.
5
+ *
6
+ * Usage:
7
+ * import { HyperStackClient } from "hyperstack-core";
8
+ * const hs = new HyperStackClient({ apiKey: "hs_..." });
9
+ * await hs.store({ slug: "use-clerk", title: "Use Clerk for auth", cardType: "decision" });
10
+ * await hs.blockers("deploy-prod"); // → typed blockers
11
+ *
12
+ * OpenClaw:
13
+ * import { createOpenClawAdapter } from "hyperstack-core/adapters/openclaw";
14
+ * const adapter = createOpenClawAdapter({ agentId: "researcher" });
15
+ */
16
+
17
+ export { HyperStackClient } from "./src/client.js";
18
+ export { createOpenClawAdapter } from "./adapters/openclaw.js";
19
+ export { parse, parseMarkdown, parseConversation, parsePlainText, slugify } from "./src/parser.js";
package/package.json CHANGED
@@ -1,50 +1,51 @@
1
- {
2
- "name": "hyperstack-core",
3
- "version": "1.2.0",
4
- "description": "Typed graph memory for AI agents. Replace GOALS.md with queryable cards + relations. Works with OpenClaw, Claude Desktop, Cursor.",
5
- "type": "module",
6
- "main": "index.js",
7
- "bin": {
8
- "hyperstack-core": "./cli.js"
9
- },
10
- "exports": {
11
- ".": "./index.js",
12
- "./client": "./src/client.js",
13
- "./adapters/openclaw": "./adapters/openclaw.js"
14
- },
15
- "files": [
16
- "index.js",
17
- "cli.js",
18
- "src/",
19
- "adapters/",
20
- "templates/",
21
- "examples/",
22
- "SKILL.md",
23
- "README.md",
24
- "LICENSE"
25
- ],
26
- "keywords": [
27
- "hyperstack",
28
- "knowledge-graph",
29
- "ai-agents",
30
- "memory",
31
- "openclaw",
32
- "multi-agent",
33
- "mcp",
34
- "typed-relations",
35
- "graph-memory",
36
- "agent-coordination"
37
- ],
38
- "author": "CascadeAI <deeq.yaqub1@gmail.com>",
39
- "license": "MIT",
40
- "repository": {
41
- "type": "git",
42
- "url": "https://github.com/deeqyaqub1-cmd/hyperstack-core"
43
- },
44
- "homepage": "https://cascadeai.dev/hyperstack",
45
- "engines": {
46
- "node": ">=18"
47
- },
48
- "dependencies": {},
49
- "devDependencies": {}
50
- }
1
+ {
2
+ "name": "hyperstack-core",
3
+ "version": "1.5.0",
4
+ "description": "Typed graph memory for AI agents. Replace GOALS.md with queryable cards + relations. Works with OpenClaw, Claude Desktop, Cursor.",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "bin": {
8
+ "hyperstack-core": "./cli.js"
9
+ },
10
+ "exports": {
11
+ ".": "./index.js",
12
+ "./client": "./src/client.js",
13
+ "./parser": "./src/parser.js",
14
+ "./adapters/openclaw": "./adapters/openclaw.js"
15
+ },
16
+ "files": [
17
+ "index.js",
18
+ "cli.js",
19
+ "src/",
20
+ "adapters/",
21
+ "templates/",
22
+ "examples/",
23
+ "SKILL.md",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "keywords": [
28
+ "hyperstack",
29
+ "knowledge-graph",
30
+ "ai-agents",
31
+ "memory",
32
+ "openclaw",
33
+ "multi-agent",
34
+ "mcp",
35
+ "typed-relations",
36
+ "graph-memory",
37
+ "agent-coordination"
38
+ ],
39
+ "author": "CascadeAI <deeq.yaqub1@gmail.com>",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "https://github.com/deeqyaqub1-cmd/hyperstack-core"
44
+ },
45
+ "homepage": "https://cascadeai.dev/hyperstack",
46
+ "engines": {
47
+ "node": ">=18"
48
+ },
49
+ "dependencies": {},
50
+ "devDependencies": {}
51
+ }