nexarch 0.1.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.
Files changed (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # nexarch
2
+
3
+ Connect AI coding tools to your Nexarch architecture workspace.
4
+
5
+ ## Quick start
6
+
7
+ ```sh
8
+ npx nexarch login
9
+ npx nexarch setup
10
+ ```
11
+
12
+ ## Commands
13
+
14
+ | Command | Description |
15
+ |---|---|
16
+ | `nexarch login` | Authenticate via browser and store credentials |
17
+ | `nexarch logout` | Remove local credentials |
18
+ | `nexarch status` | Check connection and show architecture summary |
19
+ | `nexarch setup` | Auto-configure detected MCP clients |
20
+ | `nexarch mcp-config [client]` | Print config block for manual setup |
21
+ | `nexarch mcp-proxy` | stdio→HTTP bridge used internally by MCP clients |
22
+
23
+ ## Requirements
24
+
25
+ - Node.js 18 or later
26
+ - A Nexarch workspace account
27
+
28
+ ## Documentation
29
+
30
+ [nexarch.ai/docs/cli-reference](https://nexarch.ai/docs/cli-reference)
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "nexarch",
3
+ "version": "0.1.0",
4
+ "description": "Connect AI coding tools to your Nexarch architecture workspace",
5
+ "keywords": [
6
+ "nexarch",
7
+ "mcp",
8
+ "architecture",
9
+ "ai"
10
+ ],
11
+ "license": "MIT",
12
+ "author": "Nexarch <hello@nexarch.ai>",
13
+ "homepage": "https://nexarch.ai",
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "type": "module",
18
+ "bin": {
19
+ "nexarch": "dist/index.js"
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc",
26
+ "dev": "tsx src/index.ts",
27
+ "typecheck": "tsc --noEmit"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^22",
31
+ "tsx": "^4",
32
+ "typescript": "^5"
33
+ }
34
+ }