berserqir 0.0.1
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/bin/berserqir.js +15 -0
- package/package.json +11 -0
package/bin/berserqir.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Berserqir installer — placeholder (v0.0.1 reserves the package name).
|
|
3
|
+
// The real installer lands here: detect → plan → apply → vendor → /init handoff.
|
|
4
|
+
const { version } = require("../package.json");
|
|
5
|
+
|
|
6
|
+
console.log(`
|
|
7
|
+
⚔️ berserqir v${version}
|
|
8
|
+
|
|
9
|
+
The agent legion harness — SDD + hierarchical memory + agentic loop + evals,
|
|
10
|
+
portable across GitHub Copilot, Claude Code and Cursor.
|
|
11
|
+
|
|
12
|
+
This is a name-reservation placeholder. The installer is under construction:
|
|
13
|
+
https://github.com/berserq/berserqir
|
|
14
|
+
`);
|
|
15
|
+
process.exit(0);
|
package/package.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "berserqir",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Berserqir — the agent legion harness. SDD + hierarchical memory + agentic loop + behavioral evals, portable across GitHub Copilot, Claude Code and Cursor.",
|
|
5
|
+
"keywords": ["ai-agents", "agent-harness", "claude-code", "github-copilot", "cursor", "sdd", "context-engineering"],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"bin": { "berserqir": "bin/berserqir.js" },
|
|
8
|
+
"files": ["bin"],
|
|
9
|
+
"engines": { "node": ">=18" },
|
|
10
|
+
"repository": { "type": "git", "url": "git+https://github.com/berserq/berserqir.git" }
|
|
11
|
+
}
|