openhivemind 0.1.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/LICENSE +21 -0
- package/dist/cli.js +8726 -0
- package/package.json +27 -0
- package/plugins/claude-code/.claude-plugin/plugin.json +9 -0
- package/plugins/claude-code/dist/cli.js +8726 -0
- package/plugins/claude-code/hooks/hooks.json +27 -0
- package/plugins/claude-code/skills/gist/SKILL.md +8 -0
- package/plugins/claude-code/skills/search/SKILL.md +10 -0
- package/plugins/claude-code/skills/setup/SKILL.md +8 -0
- package/plugins/claude-code/skills/share/SKILL.md +8 -0
- package/plugins/codex/.codex-plugin/plugin.json +18 -0
- package/plugins/codex/dist/cli.js +8726 -0
- package/plugins/codex/hooks/hooks.json +27 -0
- package/plugins/codex/skills/gist/SKILL.md +8 -0
- package/plugins/codex/skills/search/SKILL.md +10 -0
- package/plugins/codex/skills/setup/SKILL.md +8 -0
- package/plugins/codex/skills/share/SKILL.md +8 -0
- package/skills/gist/SKILL.md +8 -0
- package/skills/search/SKILL.md +10 -0
- package/skills/setup/SKILL.md +8 -0
- package/skills/share/SKILL.md +8 -0
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openhivemind",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Shared, searchable coding-agent history",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"bin": {
|
|
7
|
+
"openhivemind": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"skills",
|
|
12
|
+
"plugins"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"proper-lockfile": "4.1.2"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@openhivemind/shared": "0.1.0"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=24.20.0 <25"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsup"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openhivemind",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Ship every finished turn of this session to your team's Open Hivemind server, secrets scrubbed on the laptop, and search the shared history from inside the agent.",
|
|
5
|
+
"author": { "name": "Open Hivemind" },
|
|
6
|
+
"homepage": "https://github.com/openhivemind/openhivemind",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"keywords": ["history", "transcripts", "search", "team", "self-hosted"]
|
|
9
|
+
}
|