archctx 0.0.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/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # archctx
2
+
3
+ Reserved npm package name for the ArchContext command-line interface.
4
+
5
+ ArchContext is a local architecture control loop for agentic coding runtimes.
6
+ The production CLI is under development in the
7
+ [Ancienttwo/arch-context](https://github.com/Ancienttwo/arch-context) repository.
8
+
9
+ This `0.0.0` release intentionally contains only a placeholder executable so
10
+ the package name can be reserved before the first product release.
package/bin/archctx.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.error(
4
+ "archctx is reserved for the ArchContext CLI. The first product release is not published yet."
5
+ );
6
+ process.exitCode = 1;
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "archctx",
3
+ "version": "0.0.0",
4
+ "description": "Reserved package name for the ArchContext command-line interface.",
5
+ "type": "module",
6
+ "bin": {
7
+ "archctx": "bin/archctx.js"
8
+ },
9
+ "files": [
10
+ "bin/",
11
+ "README.md"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/Ancienttwo/arch-context.git"
16
+ },
17
+ "homepage": "https://github.com/Ancienttwo/arch-context#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/Ancienttwo/arch-context/issues"
20
+ },
21
+ "keywords": [
22
+ "architecture",
23
+ "agentic-coding",
24
+ "cli"
25
+ ],
26
+ "author": "",
27
+ "license": "UNLICENSED",
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org/"
30
+ },
31
+ "engines": {
32
+ "node": ">=18"
33
+ }
34
+ }