@nanhara/hara 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/LICENSE +21 -0
- package/README.md +21 -0
- package/bin/hara.mjs +25 -0
- package/package.json +36 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Nanhara
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# hara
|
|
2
|
+
|
|
3
|
+
**A coding agent CLI that runs like an engineering org.**
|
|
4
|
+
|
|
5
|
+
> Think "Claude Code, but it operates as a configurable, governed *organization* of role-agents" —
|
|
6
|
+
> with routing boundaries, a dispatcher, a single source-of-truth data layer, human-in-the-loop
|
|
7
|
+
> approvals, and cron autonomy.
|
|
8
|
+
|
|
9
|
+
🚧 **Early placeholder.** The real CLI is under active development. This package reserves
|
|
10
|
+
`@nanhara/hara` on npm. Follow along:
|
|
11
|
+
|
|
12
|
+
- Repo: https://github.com/hara-cli/hara
|
|
13
|
+
- Site: https://hara.run
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm i -g @nanhara/hara
|
|
17
|
+
hara # prints status
|
|
18
|
+
hara --version
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
MIT © Nanhara
|
package/bin/hara.mjs
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// hara — placeholder CLI. Real agent coming soon.
|
|
3
|
+
import { readFileSync } from "node:fs";
|
|
4
|
+
import { fileURLToPath } from "node:url";
|
|
5
|
+
import { dirname, join } from "node:path";
|
|
6
|
+
|
|
7
|
+
const __dir = dirname(fileURLToPath(import.meta.url));
|
|
8
|
+
let version = "0.0.1";
|
|
9
|
+
try {
|
|
10
|
+
version = JSON.parse(readFileSync(join(__dir, "..", "package.json"), "utf8")).version;
|
|
11
|
+
} catch {}
|
|
12
|
+
|
|
13
|
+
const args = process.argv.slice(2);
|
|
14
|
+
if (args[0] === "-v" || args[0] === "--version") {
|
|
15
|
+
console.log(version);
|
|
16
|
+
process.exit(0);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
console.log(`hara v${version}
|
|
20
|
+
A coding agent CLI that runs like an engineering org.
|
|
21
|
+
|
|
22
|
+
This is an early placeholder — the real thing is under active development.
|
|
23
|
+
Track it: https://github.com/hara-cli/hara
|
|
24
|
+
Site: https://hara.run
|
|
25
|
+
`);
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nanhara/hara",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "hara — a coding agent CLI that runs like an engineering org. Placeholder; under active development.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"hara": "bin/hara.mjs"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"keywords": [
|
|
15
|
+
"ai",
|
|
16
|
+
"agent",
|
|
17
|
+
"cli",
|
|
18
|
+
"coding-agent",
|
|
19
|
+
"llm",
|
|
20
|
+
"agent-orchestration",
|
|
21
|
+
"multi-agent"
|
|
22
|
+
],
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"author": "Nanhara",
|
|
25
|
+
"homepage": "https://hara.run",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/hara-cli/hara.git"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
}
|
|
36
|
+
}
|