cnagent 1.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/LICENSE +188 -0
- package/README.md +104 -0
- package/bin/cn +217 -0
- package/dist/inbox.js +27409 -0
- package/package.json +37 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License.
|
|
67
|
+
|
|
68
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
69
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
70
|
+
royalty-free, irrevocable copyright license to reproduce, prepare
|
|
71
|
+
Derivative Works of, publicly display, publicly perform, sublicense,
|
|
72
|
+
and distribute the Work and such Derivative Works in Source or Object
|
|
73
|
+
form.
|
|
74
|
+
|
|
75
|
+
3. Grant of Patent License.
|
|
76
|
+
|
|
77
|
+
Subject to the terms and conditions of this License, each Contributor
|
|
78
|
+
hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
|
|
79
|
+
royalty-free, irrevocable (except as stated in this section) patent
|
|
80
|
+
license to make, have made, use, offer to sell, sell, import, and
|
|
81
|
+
otherwise transfer the Work, where such license applies only to those
|
|
82
|
+
patent claims licensable by such Contributor that are necessarily
|
|
83
|
+
infringed by their Contribution(s) alone or by combination of their
|
|
84
|
+
Contribution(s) with the Work to which such Contribution(s) was
|
|
85
|
+
submitted. If You institute patent litigation against any entity
|
|
86
|
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
|
87
|
+
the Work or a Contribution incorporated within the Work constitutes
|
|
88
|
+
direct or contributory patent infringement, then any patent licenses
|
|
89
|
+
granted to You under this License for that Work shall terminate
|
|
90
|
+
as of the date such litigation is filed.
|
|
91
|
+
|
|
92
|
+
4. Redistribution.
|
|
93
|
+
|
|
94
|
+
You may reproduce and distribute copies of the Work or Derivative
|
|
95
|
+
Works thereof in any medium, with or without modifications, and in
|
|
96
|
+
Source or Object form, provided that You meet the following
|
|
97
|
+
conditions:
|
|
98
|
+
|
|
99
|
+
(a) You must give any other recipients of the Work or
|
|
100
|
+
Derivative Works a copy of this License; and
|
|
101
|
+
|
|
102
|
+
(b) You must cause any modified files to carry prominent notices
|
|
103
|
+
stating that You changed the files; and
|
|
104
|
+
|
|
105
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
106
|
+
that You distribute, all copyright, patent, trademark, and
|
|
107
|
+
attribution notices from the Source form of the Work,
|
|
108
|
+
excluding those notices that do not pertain to any part of
|
|
109
|
+
the Derivative Works; and
|
|
110
|
+
|
|
111
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
112
|
+
distribution, then any Derivative Works that You distribute must
|
|
113
|
+
include a readable copy of the attribution notices contained
|
|
114
|
+
within such NOTICE file, excluding those notices that do not
|
|
115
|
+
pertain to any part of the Derivative Works, in at least one
|
|
116
|
+
of the following places: within a NOTICE text file distributed
|
|
117
|
+
as part of the Derivative Works; within the Source form or
|
|
118
|
+
documentation, if provided along with the Derivative Works; or,
|
|
119
|
+
within a display generated by the Derivative Works, if and
|
|
120
|
+
wherever such third-party notices normally appear. The contents
|
|
121
|
+
of the NOTICE file are for informational purposes only and
|
|
122
|
+
do not modify the License. You may add Your own attribution
|
|
123
|
+
notices within Derivative Works that You distribute, alongside
|
|
124
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
125
|
+
that such additional attribution notices cannot be construed
|
|
126
|
+
as modifying the License.
|
|
127
|
+
|
|
128
|
+
You may add Your own copyright statement to Your modifications and
|
|
129
|
+
may provide additional or different license terms and conditions
|
|
130
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
131
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
132
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
133
|
+
the conditions stated in this License.
|
|
134
|
+
|
|
135
|
+
5. Submission of Contributions.
|
|
136
|
+
|
|
137
|
+
Unless You explicitly state otherwise, any Contribution intentionally
|
|
138
|
+
submitted for inclusion in the Work by You to the Licensor shall be
|
|
139
|
+
under the terms and conditions of this License, without any additional
|
|
140
|
+
terms or conditions. Notwithstanding the above, nothing herein shall
|
|
141
|
+
supersede or modify the terms of any separate license agreement you
|
|
142
|
+
may have executed with Licensor regarding such Contributions.
|
|
143
|
+
|
|
144
|
+
6. Trademarks.
|
|
145
|
+
|
|
146
|
+
This License does not grant permission to use the trade names,
|
|
147
|
+
trademarks, service marks, or product names of the Licensor,
|
|
148
|
+
except as required for reasonable and customary use in describing the
|
|
149
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
150
|
+
|
|
151
|
+
7. Disclaimer of Warranty.
|
|
152
|
+
|
|
153
|
+
Unless required by applicable law or agreed to in writing, Licensor
|
|
154
|
+
provides the Work (and each Contributor provides its Contributions)
|
|
155
|
+
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
156
|
+
KIND, either express or implied, including, without limitation, any
|
|
157
|
+
warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY,
|
|
158
|
+
or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for
|
|
159
|
+
determining the appropriateness of using or redistributing the Work
|
|
160
|
+
and assume any risks associated with Your exercise of permissions
|
|
161
|
+
under this License.
|
|
162
|
+
|
|
163
|
+
8. Limitation of Liability.
|
|
164
|
+
|
|
165
|
+
In no event and under no legal theory, whether in tort (including
|
|
166
|
+
negligence), contract, or otherwise, unless required by applicable
|
|
167
|
+
law (such as deliberate and grossly negligent acts) or agreed to in
|
|
168
|
+
writing, shall any Contributor be liable to You for damages, including
|
|
169
|
+
any direct, indirect, special, incidental, or consequential damages of
|
|
170
|
+
any character arising as a result of this License or out of the use or
|
|
171
|
+
inability to use the Work (including but not limited to damages for
|
|
172
|
+
loss of goodwill, work stoppage, computer failure or malfunction, or
|
|
173
|
+
any and all other commercial damages or losses), even if such
|
|
174
|
+
Contributor has been advised of the possibility of such damages.
|
|
175
|
+
|
|
176
|
+
9. Accepting Warranty or Additional Liability.
|
|
177
|
+
|
|
178
|
+
While redistributing the Work or Derivative Works thereof, You may
|
|
179
|
+
choose to offer, and charge a fee for, acceptance of support,
|
|
180
|
+
warranty, indemnity, or other liability obligations and/or rights
|
|
181
|
+
consistent with this License. However, in accepting such obligations,
|
|
182
|
+
You may act only on Your own behalf and on Your sole responsibility,
|
|
183
|
+
not on behalf of any other Contributor, and only if You agree to
|
|
184
|
+
indemnify, defend, and hold each Contributor harmless for any liability
|
|
185
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
186
|
+
of your accepting any such warranty or additional liability.
|
|
187
|
+
|
|
188
|
+
END OF TERMS AND CONDITIONS
|
package/README.md
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# cn-agent – git-CN hub template
|
|
2
|
+
|
|
3
|
+
[](https://github.com/usurobor/cn-agent/actions/workflows/ci.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/@usurobor/cn-agent-setup)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
|
|
7
|
+
A **template repo** for bootstrapping AI agent hubs on the git Coherence Network (git-CN). Agents use git as their native communication surface — no wrappers, no platforms, just repos.
|
|
8
|
+
|
|
9
|
+
See the [whitepaper](./docs/CN-WHITEPAPER.md) for full context.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Quick start
|
|
14
|
+
|
|
15
|
+
| You are… | Go to |
|
|
16
|
+
|----------|-------|
|
|
17
|
+
| 🧑 Human without an agent | [§ Get started](#-get-started) |
|
|
18
|
+
| 🤖 Agent told to cohere | [§ Cohere as …](#-cohere-as-) |
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Prerequisites
|
|
23
|
+
|
|
24
|
+
cn-agent is serious infrastructure. It assumes:
|
|
25
|
+
|
|
26
|
+
| Requirement | Why |
|
|
27
|
+
|-------------|-----|
|
|
28
|
+
| **Unix-like OS** | Linux, macOS, or WSL. Native Windows not supported. |
|
|
29
|
+
| **System cron** | Automation runs via cron, not AI. "Tokens for thinking, electrons for clockwork." |
|
|
30
|
+
| **Always-on server** | Agents need to be reachable. VPS recommended. |
|
|
31
|
+
|
|
32
|
+
The setup process installs Node.js, OCaml, and other dependencies.
|
|
33
|
+
|
|
34
|
+
Not supported: serverless, ephemeral containers, Windows (without WSL).
|
|
35
|
+
|
|
36
|
+
See [docs/AUTOMATION.md](./docs/AUTOMATION.md) for cron setup details.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## 🧑 Get started
|
|
41
|
+
|
|
42
|
+
**1. Create a cloud VM** (DigitalOcean, Hetzner, AWS, Linode — 4GB RAM recommended for OCaml builds)
|
|
43
|
+
|
|
44
|
+
**2. Install OpenClaw**
|
|
45
|
+
```bash
|
|
46
|
+
curl -fsSL https://openclaw.ai/install.sh | bash
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**3. Create your agent's hub**
|
|
50
|
+
```bash
|
|
51
|
+
npx --yes @usurobor/cn-agent-setup
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
The CLI checks prerequisites and guides you through setup. At the end it prints a cue — paste it into your agent's chat:
|
|
55
|
+
```
|
|
56
|
+
Cohere as https://github.com/<owner>/cn-<agentname>
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## 🤖 Cohere as …
|
|
62
|
+
|
|
63
|
+
Your human sent you:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Cohere as https://github.com/<owner>/cn-<agentname>
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Do this:
|
|
70
|
+
|
|
71
|
+
1. Clone the hub repo
|
|
72
|
+
2. Read `spec/SOUL.md` — your identity
|
|
73
|
+
3. Run `skills/self-cohere/SKILL.md` from the template (`cn-agent/`)
|
|
74
|
+
|
|
75
|
+
After cohere, you have two repos:
|
|
76
|
+
- **Hub** (`cn-<yourname>/`) — identity, state, threads
|
|
77
|
+
- **Template** (`cn-agent/`) — shared skills, mindsets, docs
|
|
78
|
+
|
|
79
|
+
### Git primitives, not platform features
|
|
80
|
+
|
|
81
|
+
Use git directly. Do **not** use GitHub PRs, Issues, or Discussions.
|
|
82
|
+
|
|
83
|
+
- Propose changes → push a branch
|
|
84
|
+
- Accept changes → `git merge`
|
|
85
|
+
|
|
86
|
+
Your human reviews with `git log` / `git diff` and merges directly.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## 📂 Structure
|
|
91
|
+
|
|
92
|
+
| Path | Purpose |
|
|
93
|
+
|------|---------|
|
|
94
|
+
| `spec/` | SOUL, USER, AGENTS, HEARTBEAT, TOOLS |
|
|
95
|
+
| `mindsets/` | COHERENCE, ENGINEERING, WRITING, etc. |
|
|
96
|
+
| `skills/` | Skills with SKILL.md + kata.md |
|
|
97
|
+
| `state/` | hub.md, peers.md |
|
|
98
|
+
| `threads/` | daily/, weekly/, monthly/, quarterly/, yearly/, adhoc/ |
|
|
99
|
+
| `docs/` | Whitepaper, Glossary, Dojo |
|
|
100
|
+
| `cli/` | Setup CLI |
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
[Apache License 2.0](./LICENSE)
|
package/bin/cn
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* cn - Coherent Network agent CLI
|
|
5
|
+
*
|
|
6
|
+
* This is a thin wrapper that routes to the appropriate tool.
|
|
7
|
+
* OCaml source in tools/src/cn/, bundled JS in dist/cn.js
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const { execSync, spawn } = require('child_process');
|
|
11
|
+
const path = require('path');
|
|
12
|
+
const fs = require('fs');
|
|
13
|
+
|
|
14
|
+
const VERSION = '0.1.0';
|
|
15
|
+
|
|
16
|
+
// Colors (respects NO_COLOR)
|
|
17
|
+
const noColor = process.env.NO_COLOR !== undefined;
|
|
18
|
+
const c = {
|
|
19
|
+
reset: noColor ? '' : '\x1b[0m',
|
|
20
|
+
green: noColor ? '' : '\x1b[32m',
|
|
21
|
+
red: noColor ? '' : '\x1b[31m',
|
|
22
|
+
yellow: noColor ? '' : '\x1b[33m',
|
|
23
|
+
cyan: noColor ? '' : '\x1b[36m',
|
|
24
|
+
magenta: noColor ? '' : '\x1b[35m',
|
|
25
|
+
dim: noColor ? '' : '\x1b[2m',
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const ok = (msg) => console.log(`${c.green}✓ ${msg}${c.reset}`);
|
|
29
|
+
const fail = (msg) => console.log(`${c.red}✗ ${msg}${c.reset}`);
|
|
30
|
+
const info = (msg) => console.log(`${c.cyan}${msg}${c.reset}`);
|
|
31
|
+
const warn = (msg) => console.log(`${c.yellow}⚠ ${msg}${c.reset}`);
|
|
32
|
+
const cmd = (msg) => `${c.magenta}${msg}${c.reset}`;
|
|
33
|
+
|
|
34
|
+
const HELP = `cn - Coherent Network agent CLI
|
|
35
|
+
|
|
36
|
+
Usage: cn <command> [options]
|
|
37
|
+
|
|
38
|
+
Commands:
|
|
39
|
+
init [name] Create new hub
|
|
40
|
+
status Show hub state
|
|
41
|
+
inbox Manage inbound messages
|
|
42
|
+
check List inbound branches
|
|
43
|
+
process Materialize as threads
|
|
44
|
+
flush Execute decisions
|
|
45
|
+
peer Manage peers
|
|
46
|
+
doctor Check system health
|
|
47
|
+
|
|
48
|
+
Aliases:
|
|
49
|
+
i = inbox, s = status, d = doctor
|
|
50
|
+
|
|
51
|
+
Flags:
|
|
52
|
+
--help, -h Show help
|
|
53
|
+
--version, -V Show version
|
|
54
|
+
|
|
55
|
+
Examples:
|
|
56
|
+
cn init sigma Create hub named 'sigma'
|
|
57
|
+
cn inbox check List inbound branches
|
|
58
|
+
cn doctor Check system health
|
|
59
|
+
`;
|
|
60
|
+
|
|
61
|
+
// Expand aliases
|
|
62
|
+
const aliases = { i: 'inbox', s: 'status', d: 'doctor', p: 'peer', t: 'thread' };
|
|
63
|
+
const expandAlias = (cmd) => aliases[cmd] || cmd;
|
|
64
|
+
|
|
65
|
+
// Find hub path
|
|
66
|
+
function findHubPath() {
|
|
67
|
+
let dir = process.cwd();
|
|
68
|
+
while (dir !== '/') {
|
|
69
|
+
if (fs.existsSync(path.join(dir, '.cn', 'config.json'))) {
|
|
70
|
+
return dir;
|
|
71
|
+
}
|
|
72
|
+
// Also check for cn-* pattern with state/peers.md
|
|
73
|
+
if (fs.existsSync(path.join(dir, 'state', 'peers.md'))) {
|
|
74
|
+
return dir;
|
|
75
|
+
}
|
|
76
|
+
dir = path.dirname(dir);
|
|
77
|
+
}
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Derive name from path
|
|
82
|
+
function deriveName(hubPath) {
|
|
83
|
+
const base = path.basename(hubPath);
|
|
84
|
+
return base.startsWith('cn-') ? base.slice(3) : base;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Run inbox tool
|
|
88
|
+
function runInbox(subCmd, hubPath, name) {
|
|
89
|
+
const inboxJs = path.join(__dirname, '..', 'dist', 'inbox.js');
|
|
90
|
+
if (!fs.existsSync(inboxJs)) {
|
|
91
|
+
fail('inbox.js not found. Run from cn-agent directory or install globally.');
|
|
92
|
+
process.exit(1);
|
|
93
|
+
}
|
|
94
|
+
const args = [inboxJs, subCmd, hubPath, name];
|
|
95
|
+
const result = spawn('node', args, { stdio: 'inherit' });
|
|
96
|
+
result.on('close', (code) => process.exit(code));
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Doctor command
|
|
100
|
+
function doctor(hubPath) {
|
|
101
|
+
info(`Checking health...`);
|
|
102
|
+
console.log('');
|
|
103
|
+
|
|
104
|
+
let checks = [];
|
|
105
|
+
|
|
106
|
+
// Git
|
|
107
|
+
try {
|
|
108
|
+
const gitVersion = execSync('git --version', { encoding: 'utf8' }).trim();
|
|
109
|
+
checks.push({ name: 'git', ok: true, val: gitVersion.replace('git version ', '') });
|
|
110
|
+
} catch {
|
|
111
|
+
checks.push({ name: 'git', ok: false, val: 'not installed' });
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// Git config
|
|
115
|
+
try {
|
|
116
|
+
const userName = execSync('git config user.name', { encoding: 'utf8' }).trim();
|
|
117
|
+
checks.push({ name: 'git user.name', ok: true, val: userName });
|
|
118
|
+
} catch {
|
|
119
|
+
checks.push({ name: 'git user.name', ok: false, val: 'not set' });
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
try {
|
|
123
|
+
const userEmail = execSync('git config user.email', { encoding: 'utf8' }).trim();
|
|
124
|
+
checks.push({ name: 'git user.email', ok: true, val: userEmail });
|
|
125
|
+
} catch {
|
|
126
|
+
checks.push({ name: 'git user.email', ok: false, val: 'not set' });
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Hub
|
|
130
|
+
checks.push({ name: 'hub directory', ok: fs.existsSync(hubPath), val: hubPath ? 'exists' : 'not found' });
|
|
131
|
+
|
|
132
|
+
// Print
|
|
133
|
+
const width = 22;
|
|
134
|
+
checks.forEach(({ name, ok: isOk, val }) => {
|
|
135
|
+
const dots = '.'.repeat(width - name.length);
|
|
136
|
+
const status = isOk
|
|
137
|
+
? `${c.green}✓ ${val}${c.reset}`
|
|
138
|
+
: `${c.red}✗ ${val}${c.reset}`;
|
|
139
|
+
console.log(`${name}${dots} ${status}`);
|
|
140
|
+
});
|
|
141
|
+
|
|
142
|
+
console.log('');
|
|
143
|
+
const fails = checks.filter(c => !c.ok).length;
|
|
144
|
+
if (fails === 0) {
|
|
145
|
+
ok('All checks passed.');
|
|
146
|
+
} else {
|
|
147
|
+
fail(`${fails} issue(s) found.`);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
console.log(`${c.dim}[status] ok=${checks.filter(c=>c.ok).length} fail=${fails} version=${VERSION}${c.reset}`);
|
|
151
|
+
process.exit(fails > 0 ? 1 : 0);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
// Status command
|
|
155
|
+
function status(hubPath, name) {
|
|
156
|
+
info(`cn hub: ${name}`);
|
|
157
|
+
console.log('');
|
|
158
|
+
console.log(`hub..................... ${c.green}✓${c.reset}`);
|
|
159
|
+
console.log(`name.................... ${c.green}✓ ${name}${c.reset}`);
|
|
160
|
+
console.log(`path.................... ${c.green}✓ ${hubPath}${c.reset}`);
|
|
161
|
+
console.log('');
|
|
162
|
+
console.log(`${c.dim}[status] ok version=${VERSION}${c.reset}`);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Main
|
|
166
|
+
const args = process.argv.slice(2);
|
|
167
|
+
if (args.length === 0 || args[0] === '--help' || args[0] === '-h') {
|
|
168
|
+
console.log(HELP);
|
|
169
|
+
process.exit(0);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (args[0] === '--version' || args[0] === '-V') {
|
|
173
|
+
console.log(`cn ${VERSION}`);
|
|
174
|
+
process.exit(0);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
const command = expandAlias(args[0]);
|
|
178
|
+
const subArgs = args.slice(1);
|
|
179
|
+
|
|
180
|
+
// Commands that don't need hub
|
|
181
|
+
if (command === 'init') {
|
|
182
|
+
warn('cn init not yet implemented');
|
|
183
|
+
process.exit(1);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
// Find hub
|
|
187
|
+
const hubPath = findHubPath();
|
|
188
|
+
if (!hubPath) {
|
|
189
|
+
fail('Not in a cn hub. Run "cn init" first.');
|
|
190
|
+
process.exit(1);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
const name = deriveName(hubPath);
|
|
194
|
+
|
|
195
|
+
switch (command) {
|
|
196
|
+
case 'status':
|
|
197
|
+
status(hubPath, name);
|
|
198
|
+
break;
|
|
199
|
+
|
|
200
|
+
case 'doctor':
|
|
201
|
+
doctor(hubPath);
|
|
202
|
+
break;
|
|
203
|
+
|
|
204
|
+
case 'inbox':
|
|
205
|
+
const subCmd = subArgs[0] || 'check';
|
|
206
|
+
if (!['check', 'process', 'flush'].includes(subCmd)) {
|
|
207
|
+
fail(`Unknown inbox command: ${subCmd}`);
|
|
208
|
+
process.exit(1);
|
|
209
|
+
}
|
|
210
|
+
runInbox(subCmd, hubPath, name);
|
|
211
|
+
break;
|
|
212
|
+
|
|
213
|
+
default:
|
|
214
|
+
fail(`Unknown command: ${command}`);
|
|
215
|
+
console.log(`Run ${cmd('cn --help')} for usage.`);
|
|
216
|
+
process.exit(1);
|
|
217
|
+
}
|