architectonic 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 ADDED
@@ -0,0 +1,41 @@
1
+ # architectonic
2
+
3
+ `architectonic` is a command-line tool for installing and wiring the core layers of an agentic system.
4
+
5
+ Those layers currently include:
6
+
7
+ ```text
8
+ teleology -- purpose, truth, evidence, governance
9
+ identity -- actors, roles, authority, privacy, constraints
10
+ project -- source-grounded project operating context
11
+ skills -- reusable procedures
12
+ ```
13
+
14
+ The initial `0.0.1` release is intentionally minimal. Its job is to reserve the
15
+ package name and establish the top-level command surface for future install,
16
+ cascade, and upkeep workflows.
17
+
18
+ ## Planned direction
19
+
20
+ Future versions may support commands such as:
21
+
22
+ ```text
23
+ architectonic add teleology
24
+ architectonic add identity
25
+ architectonic add project
26
+ architectonic add skills
27
+ architectonic doctor
28
+ architectonic update
29
+ ```
30
+
31
+ ## Current behavior
32
+
33
+ For now, the CLI only exposes:
34
+
35
+ ```text
36
+ npx architectonic
37
+ npx architectonic help
38
+ ```
39
+
40
+ The `add` surface is reserved, but the installer logic is not implemented in
41
+ `0.0.1` yet.
@@ -0,0 +1,42 @@
1
+ #!/usr/bin/env node
2
+
3
+ const args = process.argv.slice(2);
4
+ const [command, target] = args;
5
+
6
+ function printHelp() {
7
+ console.log(`architectonic 0.0.1
8
+
9
+ CLI for installing and wiring the core layers of an agentic system.
10
+
11
+ Usage:
12
+ npx architectonic
13
+ npx architectonic help
14
+ npx architectonic add <teleology|identity|project|skills>
15
+
16
+ Status:
17
+ 0.0.1 reserves the public CLI name and establishes the command surface.
18
+ The add subcommands are placeholders in this initial release.`);
19
+ }
20
+
21
+ if (!command || command === "help" || command === "--help" || command === "-h") {
22
+ printHelp();
23
+ process.exit(0);
24
+ }
25
+
26
+ if (command === "add") {
27
+ const supported = new Set(["teleology", "identity", "project", "skills"]);
28
+ if (!target || !supported.has(target)) {
29
+ console.error("Specify one of: teleology, identity, project, skills");
30
+ process.exit(1);
31
+ }
32
+
33
+ console.log(`architectonic add ${target}`);
34
+ console.log("");
35
+ console.log("This placeholder release does not install packages yet.");
36
+ console.log("It reserves the command contract for future cascade/install behavior.");
37
+ process.exit(0);
38
+ }
39
+
40
+ console.error(`Unknown command: ${command}`);
41
+ console.error("Run `architectonic help` for usage.");
42
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "architectonic",
3
+ "version": "0.0.1",
4
+ "description": "CLI for installing and wiring agentic system layers such as teleology, identity, project, and skills.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "bin": {
8
+ "architectonic": "bin/architectonic.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "README.md"
13
+ ],
14
+ "keywords": [
15
+ "architectonic",
16
+ "agentic-systems",
17
+ "teleology",
18
+ "identity",
19
+ "project",
20
+ "skills",
21
+ "cli"
22
+ ]
23
+ }