@zivis/cli 0.1.0-alpha.4 → 0.1.0-alpha.40
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 +201 -0
- package/README.md +31 -0
- package/dist/commands/app/index.d.ts +0 -8
- package/dist/commands/app/index.js +4 -16
- package/dist/commands/auth/bind.d.ts +4 -0
- package/dist/commands/auth/bind.js +97 -0
- package/dist/commands/auth/index.js +20 -2
- package/dist/commands/auth/init.d.ts +1 -0
- package/dist/commands/auth/init.js +245 -73
- package/dist/commands/auth/login.d.ts +2 -0
- package/dist/commands/auth/login.js +136 -18
- package/dist/commands/auth/logout.js +19 -7
- package/dist/commands/auth/sessions.js +7 -4
- package/dist/commands/auth/status.js +33 -12
- package/dist/commands/auth/token.d.ts +4 -0
- package/dist/commands/auth/token.js +73 -0
- package/dist/commands/check/index.d.ts +2 -0
- package/dist/commands/check/index.js +463 -0
- package/dist/commands/credits/index.js +2 -3
- package/dist/commands/inspect/index.d.ts +2 -0
- package/dist/commands/inspect/index.js +136 -0
- package/dist/commands/mcp/index.js +81 -14
- package/dist/commands/open/index.d.ts +0 -8
- package/dist/commands/open/index.js +0 -11
- package/dist/commands/scan/index.js +3 -8
- package/dist/commands/target/index.js +0 -3
- package/dist/commands/tm/index.js +3 -10
- package/dist/index.js +13 -1
- package/dist/internal/binding-token-mint.d.ts +33 -0
- package/dist/internal/binding-token-mint.js +174 -0
- package/dist/internal/extractor/adapters/go/index.d.ts +0 -4
- package/dist/internal/extractor/adapters/go/index.js +0 -6
- package/dist/internal/extractor/adapters/go/manifest.d.ts +0 -17
- package/dist/internal/extractor/adapters/go/manifest.js +19 -25
- package/dist/internal/extractor/adapters/go/parser.d.ts +0 -4
- package/dist/internal/extractor/adapters/go/parser.js +0 -5
- package/dist/internal/extractor/adapters/go/scanner.d.ts +0 -20
- package/dist/internal/extractor/adapters/go/scanner.js +0 -43
- package/dist/internal/extractor/adapters/python/index.d.ts +0 -3
- package/dist/internal/extractor/adapters/python/index.js +0 -4
- package/dist/internal/extractor/adapters/python/manifest.d.ts +0 -8
- package/dist/internal/extractor/adapters/python/manifest.js +21 -18
- package/dist/internal/extractor/adapters/python/parser.d.ts +0 -3
- package/dist/internal/extractor/adapters/python/parser.js +0 -4
- package/dist/internal/extractor/adapters/python/scanner.d.ts +0 -18
- package/dist/internal/extractor/adapters/python/scanner.js +1 -54
- package/dist/internal/extractor/adapters/typescript/index.d.ts +0 -7
- package/dist/internal/extractor/adapters/typescript/index.js +1 -21
- package/dist/internal/extractor/adapters/typescript/manifest.d.ts +0 -14
- package/dist/internal/extractor/adapters/typescript/manifest.js +26 -17
- package/dist/internal/extractor/adapters/typescript/parser.d.ts +0 -8
- package/dist/internal/extractor/adapters/typescript/parser.js +0 -9
- package/dist/internal/extractor/adapters/typescript/scanner.d.ts +0 -24
- package/dist/internal/extractor/adapters/typescript/scanner.js +0 -43
- package/dist/internal/extractor/graph-builder.d.ts +10 -0
- package/dist/internal/extractor/graph-builder.js +245 -0
- package/dist/internal/extractor/graph-types.d.ts +89 -0
- package/dist/internal/extractor/graph-types.js +1 -0
- package/dist/internal/extractor/index.d.ts +0 -14
- package/dist/internal/extractor/index.js +0 -13
- package/dist/internal/extractor/types.d.ts +0 -45
- package/dist/internal/extractor/types.js +0 -27
- package/dist/internal/extractor/walker.d.ts +0 -18
- package/dist/internal/extractor/walker.js +0 -18
- package/dist/internal/github-linkage-prompt.d.ts +7 -0
- package/dist/internal/github-linkage-prompt.js +95 -0
- package/dist/internal/ide-setup.d.ts +16 -7
- package/dist/internal/ide-setup.js +320 -46
- package/dist/internal/org-picker.d.ts +11 -0
- package/dist/internal/org-picker.js +34 -0
- package/dist/internal/orgs.js +0 -1
- package/dist/internal/project-binding.d.ts +1 -0
- package/dist/internal/project-binding.js +14 -9
- package/dist/internal/target-auth/api-config.d.ts +0 -17
- package/dist/internal/target-auth/api-config.js +0 -18
- package/dist/internal/target-auth/config.d.ts +0 -12
- package/dist/internal/target-auth/config.js +0 -13
- package/dist/internal/target-auth/index.d.ts +0 -18
- package/dist/internal/target-auth/index.js +0 -19
- package/dist/internal/target-auth/keychain.d.ts +0 -18
- package/dist/internal/target-auth/keychain.js +3 -23
- package/dist/internal/target-auth/types.d.ts +0 -26
- package/dist/internal/target-auth/types.js +0 -10
- package/dist/internal/target-auth/workos.d.ts +0 -15
- package/dist/internal/target-auth/workos.js +9 -18
- package/package.json +19 -5
- package/dist/commands/app/index.js.map +0 -1
- package/dist/commands/auth/index.js.map +0 -1
- package/dist/commands/auth/init.js.map +0 -1
- package/dist/commands/auth/login.js.map +0 -1
- package/dist/commands/auth/logout.js.map +0 -1
- package/dist/commands/auth/sessions.js.map +0 -1
- package/dist/commands/auth/status.js.map +0 -1
- package/dist/commands/credits/index.js.map +0 -1
- package/dist/commands/mcp/index.js.map +0 -1
- package/dist/commands/open/index.js.map +0 -1
- package/dist/commands/scan/index.js.map +0 -1
- package/dist/commands/target/index.js.map +0 -1
- package/dist/commands/tm/index.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/internal/extractor/adapters/go/index.js.map +0 -1
- package/dist/internal/extractor/adapters/go/manifest.js.map +0 -1
- package/dist/internal/extractor/adapters/go/parser.js.map +0 -1
- package/dist/internal/extractor/adapters/go/scanner.js.map +0 -1
- package/dist/internal/extractor/adapters/python/index.js.map +0 -1
- package/dist/internal/extractor/adapters/python/manifest.js.map +0 -1
- package/dist/internal/extractor/adapters/python/parser.js.map +0 -1
- package/dist/internal/extractor/adapters/python/scanner.js.map +0 -1
- package/dist/internal/extractor/adapters/typescript/index.js.map +0 -1
- package/dist/internal/extractor/adapters/typescript/manifest.js.map +0 -1
- package/dist/internal/extractor/adapters/typescript/parser.js.map +0 -1
- package/dist/internal/extractor/adapters/typescript/scanner.js.map +0 -1
- package/dist/internal/extractor/index.js.map +0 -1
- package/dist/internal/extractor/types.js.map +0 -1
- package/dist/internal/extractor/walker.js.map +0 -1
- package/dist/internal/ide-setup.js.map +0 -1
- package/dist/internal/orgs.js.map +0 -1
- package/dist/internal/project-binding.js.map +0 -1
- package/dist/internal/target-auth/api-config.js.map +0 -1
- package/dist/internal/target-auth/config.js.map +0 -1
- package/dist/internal/target-auth/index.js.map +0 -1
- package/dist/internal/target-auth/keychain.js.map +0 -1
- package/dist/internal/target-auth/types.js.map +0 -1
- package/dist/internal/target-auth/workos.js.map +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
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. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for describing the origin of the Work and
|
|
141
|
+
reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 ZIVIS, Inc.
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @zivis/cli
|
|
2
|
+
|
|
3
|
+
The ZIVIS command-line interface — interactive setup, threat-model and security operations, and the launcher for the ZIVIS MCP server used by IDE assistants (Cursor, Claude Code, VS Code Copilot, Cline, Windsurf).
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
# Install (per-project)
|
|
7
|
+
pnpm add -D @zivis/cli
|
|
8
|
+
|
|
9
|
+
# Or run on demand
|
|
10
|
+
npx @zivis/cli init
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Common commands
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
zivis init # interactive setup: log in, pick org, bind this repo
|
|
17
|
+
zivis check # local architecture inspection + delta from last run
|
|
18
|
+
zivis mcp serve # stdio MCP server (called by your IDE, not directly)
|
|
19
|
+
zivis auth status # show current auth state and active session
|
|
20
|
+
zivis auth logout # clear stored credentials
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Credentials are stored in your OS keychain (macOS Keychain / Windows Credential Manager / libsecret on Linux). They are not written to any `.env` file.
|
|
24
|
+
|
|
25
|
+
## What is ZIVIS?
|
|
26
|
+
|
|
27
|
+
ZIVIS is an architecture-inspection security platform — it looks at the components in your app, how they connect, and what trust boundaries exist between them. See <https://zivis.ai>.
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
Apache 2.0 — see [`LICENSE`](./LICENSE).
|
|
@@ -1,10 +1,2 @@
|
|
|
1
1
|
import type { Command } from "commander";
|
|
2
|
-
/**
|
|
3
|
-
* Phase J.4 command group. The customer-facing primitive is "Application" —
|
|
4
|
-
* the thing they built and want tested. This group replaces the older
|
|
5
|
-
* `zivis target` set: same keychain layout, but auth config is pulled from
|
|
6
|
-
* the platform instead of read from a local file. Teammates discover an
|
|
7
|
-
* Application's IdP by querying the API; their tokens still stay in their
|
|
8
|
-
* own keychain.
|
|
9
|
-
*/
|
|
10
2
|
export declare function registerAppCommands(program: Command): void;
|
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
import { ApiClient } from "@zivis/mcp/api-client";
|
|
2
|
-
import {
|
|
2
|
+
import { resolveConfigFromBinding } from "@zivis/mcp/project-binding";
|
|
3
3
|
import { loginApplication, logoutTarget, tokenInfo, getValidTargetToken, } from "../../internal/target-auth/index.js";
|
|
4
4
|
import { getStorageName } from "../../internal/target-auth/keychain.js";
|
|
5
5
|
import { decodeJwtPayload } from "../../internal/target-auth/workos.js";
|
|
6
6
|
import { fetchAuthConfig } from "../../internal/target-auth/api-config.js";
|
|
7
7
|
const DEFAULT_PERSONA = "default";
|
|
8
|
-
/**
|
|
9
|
-
* Phase J.4 command group. The customer-facing primitive is "Application" —
|
|
10
|
-
* the thing they built and want tested. This group replaces the older
|
|
11
|
-
* `zivis target` set: same keychain layout, but auth config is pulled from
|
|
12
|
-
* the platform instead of read from a local file. Teammates discover an
|
|
13
|
-
* Application's IdP by querying the API; their tokens still stay in their
|
|
14
|
-
* own keychain.
|
|
15
|
-
*/
|
|
16
8
|
export function registerAppCommands(program) {
|
|
17
9
|
const app = program
|
|
18
10
|
.command("app")
|
|
@@ -54,7 +46,7 @@ export function registerAppCommands(program) {
|
|
|
54
46
|
.description("create a customer-facing Application configured for ephemeral PKCE auth")
|
|
55
47
|
.requiredOption("--name <name>", "application display name")
|
|
56
48
|
.requiredOption("--base-url <url>", "primary base URL (e.g., https://api.acme.io)")
|
|
57
|
-
.option("--type <type>", "agent | mcp_server | llm_endpoint | rest_api | ad_hoc_url", "agent")
|
|
49
|
+
.option("--type <type>", "application | agent | mcp_server | llm_endpoint | rest_api | ad_hoc_url", "agent")
|
|
58
50
|
.option("--description <text>", "optional description")
|
|
59
51
|
.option("--client-id <id>", "OAuth client_id (PKCE public client)")
|
|
60
52
|
.option("--oidc-issuer <url>", "OIDC issuer (for discovery)")
|
|
@@ -71,9 +63,6 @@ export function registerAppCommands(program) {
|
|
|
71
63
|
baseUrl: opts.baseUrl,
|
|
72
64
|
type: opts.type,
|
|
73
65
|
useEphemeralCreds: useEphemeral,
|
|
74
|
-
// PKCE-only public-client mode is the whole reason for ephemeral creds —
|
|
75
|
-
// require oauth_pkce as the auth type. Non-PKCE flows (static_token,
|
|
76
|
-
// client_credentials, bearer_refresh) need their own subcommands.
|
|
77
66
|
authType: "oauth_pkce",
|
|
78
67
|
};
|
|
79
68
|
if (opts.description)
|
|
@@ -116,7 +105,7 @@ export function registerAppCommands(program) {
|
|
|
116
105
|
.description("update an application's metadata (name, type, ephemeral-creds toggle, etc.)")
|
|
117
106
|
.option("--name <name>", "rename the application")
|
|
118
107
|
.option("--description <text>", "update the description")
|
|
119
|
-
.option("--type <type>", "agent | mcp_server | llm_endpoint | rest_api | ad_hoc_url")
|
|
108
|
+
.option("--type <type>", "application | agent | mcp_server | llm_endpoint | rest_api | ad_hoc_url")
|
|
120
109
|
.option("--use-ephemeral", "opt into ephemeral-creds mode (Phase J)")
|
|
121
110
|
.option("--no-ephemeral-disable", "opt OUT of ephemeral-creds mode (legacy KV-backed)")
|
|
122
111
|
.option("--base-url <url>", "update base URL")
|
|
@@ -239,7 +228,6 @@ export function registerAppCommands(program) {
|
|
|
239
228
|
});
|
|
240
229
|
}
|
|
241
230
|
function buildClient(opts) {
|
|
242
|
-
const config = opts.session ? { ...
|
|
231
|
+
const config = opts.session ? { ...resolveConfigFromBinding(process.cwd()), session: opts.session } : resolveConfigFromBinding(process.cwd());
|
|
243
232
|
return new ApiClient(config);
|
|
244
233
|
}
|
|
245
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { login } from "@zivis/mcp/auth";
|
|
2
|
+
import { keychainClearSession } from "@zivis/mcp/auth";
|
|
3
|
+
import { detectProjectBinding, resolveConfigFromBinding } from "@zivis/mcp/project-binding";
|
|
4
|
+
import { DEFAULT_CONFIG, credentialStorageFromConfig } from "@zivis/mcp/types";
|
|
5
|
+
import { extractEmail } from "../../internal/orgs.js";
|
|
6
|
+
import { ensureProjectBinding } from "../../internal/project-binding.js";
|
|
7
|
+
import { mintLocalProjectBindingToken } from "../../internal/binding-token-mint.js";
|
|
8
|
+
import { setupCursorWorkspace, setupVsCodeClaude, setupVsCodeCopilot, setupClaudeCodeCli, } from "../../internal/ide-setup.js";
|
|
9
|
+
export async function bindCommand(opts) {
|
|
10
|
+
const cwd = process.cwd();
|
|
11
|
+
const config = { ...DEFAULT_CONFIG, ...resolveConfigFromBinding(cwd) };
|
|
12
|
+
const detected = detectProjectBinding(cwd);
|
|
13
|
+
if (!detected?.binding.workosOrgId) {
|
|
14
|
+
console.error("");
|
|
15
|
+
console.error("[zivis] ERROR: No project binding found.");
|
|
16
|
+
console.error("[zivis] Run zivis auth login (or auth init) in this repo first,");
|
|
17
|
+
console.error("[zivis] then run zivis auth bind if MCP still needs an API key.");
|
|
18
|
+
console.error("");
|
|
19
|
+
process.exit(1);
|
|
20
|
+
}
|
|
21
|
+
const { workosOrgId, session: bindingSession, orgName } = detected.binding;
|
|
22
|
+
const session = bindingSession;
|
|
23
|
+
console.log("");
|
|
24
|
+
console.log(`Minting MCP API key for ${orgName ?? workosOrgId} (session: "${session}")`);
|
|
25
|
+
console.log("");
|
|
26
|
+
let tokens;
|
|
27
|
+
try {
|
|
28
|
+
tokens = await login(config, `__bind_temp_${session}`, workosOrgId, {
|
|
29
|
+
orgName,
|
|
30
|
+
sessionLabel: session,
|
|
31
|
+
skipConfirm: opts.yes === true,
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
catch (err) {
|
|
35
|
+
console.error("[zivis] Authentication failed:", err instanceof Error ? err.message : err);
|
|
36
|
+
process.exit(1);
|
|
37
|
+
}
|
|
38
|
+
const email = extractEmail(tokens.id_token);
|
|
39
|
+
console.log(`✓ Authenticated as ${email}`);
|
|
40
|
+
const credentialStorage = credentialStorageFromConfig(config);
|
|
41
|
+
let mint;
|
|
42
|
+
try {
|
|
43
|
+
mint = await mintLocalProjectBindingToken({
|
|
44
|
+
config,
|
|
45
|
+
session,
|
|
46
|
+
accessToken: tokens.access_token,
|
|
47
|
+
cwd,
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
finally {
|
|
51
|
+
await keychainClearSession(`__bind_temp_${session}`, credentialStorage).catch(() => { });
|
|
52
|
+
}
|
|
53
|
+
if (!mint.ok) {
|
|
54
|
+
console.error(`[zivis] Bind failed: ${mint.error}`);
|
|
55
|
+
process.exit(1);
|
|
56
|
+
}
|
|
57
|
+
const maskedKey = `${mint.key.slice(0, 10)}...${mint.key.slice(-4)}`;
|
|
58
|
+
console.log(`✓ Local Project Binding Token stored (${maskedKey})`);
|
|
59
|
+
console.log(` Org: ${mint.orgName} (${mint.workosOrgId})`);
|
|
60
|
+
console.log(` Key name: ${mint.keyName}`);
|
|
61
|
+
try {
|
|
62
|
+
await setupCursorWorkspace();
|
|
63
|
+
}
|
|
64
|
+
catch (err) {
|
|
65
|
+
console.log(` WARNING: Failed to update .cursor/mcp.json: ${err instanceof Error ? err.message : err}`);
|
|
66
|
+
}
|
|
67
|
+
try {
|
|
68
|
+
await setupVsCodeClaude();
|
|
69
|
+
await setupVsCodeCopilot();
|
|
70
|
+
}
|
|
71
|
+
catch (err) {
|
|
72
|
+
console.log(` WARNING: Failed to update .vscode/mcp.json: ${err instanceof Error ? err.message : err}`);
|
|
73
|
+
}
|
|
74
|
+
try {
|
|
75
|
+
await setupClaudeCodeCli();
|
|
76
|
+
}
|
|
77
|
+
catch (err) {
|
|
78
|
+
console.log(` WARNING: Failed to update Claude Code CLI config: ${err instanceof Error ? err.message : err}`);
|
|
79
|
+
}
|
|
80
|
+
await ensureProjectBinding({
|
|
81
|
+
config,
|
|
82
|
+
session,
|
|
83
|
+
accessToken: tokens.access_token,
|
|
84
|
+
organizationId: workosOrgId,
|
|
85
|
+
cwd,
|
|
86
|
+
autoBind: true,
|
|
87
|
+
skipBind: false,
|
|
88
|
+
force: false,
|
|
89
|
+
});
|
|
90
|
+
console.log("");
|
|
91
|
+
console.log("✓ Bind complete. Reload your IDE to activate the MCP server.");
|
|
92
|
+
console.log("");
|
|
93
|
+
console.log(" To verify: zivis auth status");
|
|
94
|
+
console.log(" To revoke: zivis auth logout (or Settings → API Tokens in the UI)");
|
|
95
|
+
console.log("");
|
|
96
|
+
process.exit(0);
|
|
97
|
+
}
|
|
@@ -1,25 +1,37 @@
|
|
|
1
|
+
import { bindCommand } from "./bind.js";
|
|
1
2
|
import { loginCommand } from "./login.js";
|
|
2
3
|
import { initCommand } from "./init.js";
|
|
3
4
|
import { statusCommand } from "./status.js";
|
|
4
5
|
import { logoutCommand } from "./logout.js";
|
|
5
6
|
import { sessionsCommand } from "./sessions.js";
|
|
7
|
+
import { tokenCommand } from "./token.js";
|
|
6
8
|
export function registerAuthCommands(program) {
|
|
7
9
|
const auth = program.command("auth").description("authentication");
|
|
10
|
+
auth
|
|
11
|
+
.command("bind")
|
|
12
|
+
.description("mint MCP API key for this repo (OAuth once + stored key). Normally automatic after login — use bind to repair.")
|
|
13
|
+
.option("-y, --yes", "skip confirmation prompt")
|
|
14
|
+
.action(async (opts) => {
|
|
15
|
+
await bindCommand(opts);
|
|
16
|
+
});
|
|
8
17
|
auth
|
|
9
18
|
.command("init")
|
|
10
19
|
.description("interactive setup: authenticate, pick org, and bind this repo")
|
|
11
20
|
.option("-s, --session <name>", "named session for multi-tenant")
|
|
21
|
+
.option("--skip-mint-key", "skip MCP API key mint after successful OAuth")
|
|
12
22
|
.action(async (opts) => {
|
|
13
23
|
await initCommand(opts);
|
|
14
24
|
});
|
|
15
25
|
auth
|
|
16
26
|
.command("login")
|
|
17
|
-
.description("OAuth PKCE login
|
|
27
|
+
.description("OAuth PKCE login; when this repo has a binding, mints MCP API key automatically")
|
|
18
28
|
.option("-s, --session <name>", "named session for multi-tenant")
|
|
19
29
|
.option("-o, --org <workosOrgId>", "scope JWT to a specific WorkOS org")
|
|
20
30
|
.option("-y, --yes", "skip interactive confirmation")
|
|
31
|
+
.option("--rebind", "switch this project's bound org via interactive picker")
|
|
21
32
|
.option("--bind", "auto-write .zivis/project.json binding")
|
|
22
33
|
.option("--no-bind", "skip project binding")
|
|
34
|
+
.option("--skip-mint-key", "skip MCP API key mint after successful OAuth")
|
|
23
35
|
.action(async (opts) => {
|
|
24
36
|
await loginCommand(opts);
|
|
25
37
|
});
|
|
@@ -45,5 +57,11 @@ export function registerAuthCommands(program) {
|
|
|
45
57
|
.action(async (opts) => {
|
|
46
58
|
await sessionsCommand(opts);
|
|
47
59
|
});
|
|
60
|
+
auth
|
|
61
|
+
.command("token <apiKey>")
|
|
62
|
+
.description("store a ZIVIS API access token for MCP/CI use (generate at Settings → API Tokens)")
|
|
63
|
+
.option("-s, --session <name>", "named session to bind this token to (defaults to project binding if present)")
|
|
64
|
+
.action(async (apiKey, opts) => {
|
|
65
|
+
await tokenCommand(apiKey, opts);
|
|
66
|
+
});
|
|
48
67
|
}
|
|
49
|
-
//# sourceMappingURL=index.js.map
|