timoneer 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/README.md +13 -0
- package/bin/timoneer.js +4 -0
- package/package.json +37 -0
- package/src/main.ts +31 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# timoneer
|
|
2
|
+
|
|
3
|
+
> The helmsman steers. He does not row.
|
|
4
|
+
|
|
5
|
+
Command line of [Timoneer](https://github.com/timoneer/timoneer), a platform
|
|
6
|
+
to direct a fleet of coding agents: closed sandboxes, a test link per task,
|
|
7
|
+
product and architecture maps, typed decisions, evidence-based review.
|
|
8
|
+
|
|
9
|
+
**Pre-alpha.** This version only answers `timoneer help` and
|
|
10
|
+
`timoneer version`. The engine is being built in the open; follow the
|
|
11
|
+
repository for progress.
|
|
12
|
+
|
|
13
|
+
Requires Node ≥ 24. Apache-2.0.
|
package/bin/timoneer.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "timoneer",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Steer a fleet of coding agents from the helm. Pre-alpha: the engine is being built.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"timoneer": "bin/timoneer.js"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=24"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@timoneer/core": "0.0.1"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/timoneer/timoneer.git",
|
|
19
|
+
"directory": "apps/cli"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://timoneer.dev",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"agents",
|
|
24
|
+
"coding-agents",
|
|
25
|
+
"orchestration",
|
|
26
|
+
"claude-code",
|
|
27
|
+
"helm"
|
|
28
|
+
],
|
|
29
|
+
"files": [
|
|
30
|
+
"bin",
|
|
31
|
+
"src",
|
|
32
|
+
"README.md"
|
|
33
|
+
],
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
}
|
|
37
|
+
}
|
package/src/main.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { readFileSync } from "node:fs";
|
|
2
|
+
import { ENGINE_NAME } from "@timoneer/core";
|
|
3
|
+
|
|
4
|
+
const VERSION: string = JSON.parse(
|
|
5
|
+
readFileSync(new URL("../package.json", import.meta.url), "utf8"),
|
|
6
|
+
).version;
|
|
7
|
+
|
|
8
|
+
const USAGE = `${ENGINE_NAME} — steer a fleet of coding agents from the helm
|
|
9
|
+
|
|
10
|
+
timoneer help this message
|
|
11
|
+
timoneer version engine version
|
|
12
|
+
|
|
13
|
+
Pre-alpha: the engine is being built. See backlog/ for what comes next.
|
|
14
|
+
`;
|
|
15
|
+
|
|
16
|
+
export async function main(argv: string[]): Promise<number> {
|
|
17
|
+
const [command = "help"] = argv;
|
|
18
|
+
switch (command) {
|
|
19
|
+
case "version":
|
|
20
|
+
console.log(VERSION);
|
|
21
|
+
return 0;
|
|
22
|
+
case "help":
|
|
23
|
+
case "--help":
|
|
24
|
+
case "-h":
|
|
25
|
+
console.log(USAGE);
|
|
26
|
+
return 0;
|
|
27
|
+
default:
|
|
28
|
+
console.error(`unknown command: ${command}\n\n${USAGE}`);
|
|
29
|
+
return 2;
|
|
30
|
+
}
|
|
31
|
+
}
|