@signstack/cli 0.1.1 → 0.1.2
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 +0 -35
- package/oclif.manifest.json +1 -1
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Modern Sign CLI — command-line tool for managing SignStack document workflows. Validate, preview, push, and run document blueprints from your terminal.
|
|
4
4
|
|
|
5
|
-
Built with [oclif](https://oclif.io).
|
|
6
|
-
|
|
7
5
|
[](https://npmjs.org/package/@signstack/cli)
|
|
8
6
|
|
|
9
7
|
## Requirements
|
|
@@ -389,15 +387,6 @@ These flags are available on every command:
|
|
|
389
387
|
|
|
390
388
|
---
|
|
391
389
|
|
|
392
|
-
## Environment Variables
|
|
393
|
-
|
|
394
|
-
| Variable | Description |
|
|
395
|
-
|----------|-------------|
|
|
396
|
-
| `SIGNSTACK_API_KEY` | API key for `auth login` (avoids interactive prompt) |
|
|
397
|
-
| `SIGNSTACK_API_URL` | Override the API URL |
|
|
398
|
-
|
|
399
|
-
---
|
|
400
|
-
|
|
401
390
|
## CI/CD Usage
|
|
402
391
|
|
|
403
392
|
All commands support `--json` for machine-readable output. Combine with `--api-key-stdin` for secure authentication:
|
|
@@ -416,30 +405,6 @@ signstack push ./resources --json
|
|
|
416
405
|
|
|
417
406
|
---
|
|
418
407
|
|
|
419
|
-
## Development
|
|
420
|
-
|
|
421
|
-
### Building the CLI
|
|
422
|
-
|
|
423
|
-
```bash
|
|
424
|
-
# From the monorepo root
|
|
425
|
-
npm run cli:build
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
### Running Validation on Examples
|
|
429
|
-
|
|
430
|
-
```bash
|
|
431
|
-
npm run signstack:validate -- ./apps/signstack-cli/schemas/examples
|
|
432
|
-
```
|
|
433
|
-
|
|
434
|
-
### Running Locally (Without Installing)
|
|
435
|
-
|
|
436
|
-
```bash
|
|
437
|
-
# From the monorepo root, after building
|
|
438
|
-
node apps/signstack-cli/bin/run.js <command>
|
|
439
|
-
```
|
|
440
|
-
|
|
441
|
-
---
|
|
442
|
-
|
|
443
408
|
## Troubleshooting
|
|
444
409
|
|
|
445
410
|
| Problem | Solution |
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signstack/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Modern Sign CLI - Command line interface for document workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/apps/signstack-cli/src/index.js",
|
|
@@ -15,12 +15,10 @@
|
|
|
15
15
|
],
|
|
16
16
|
"keywords": [
|
|
17
17
|
"signstack",
|
|
18
|
-
"modern-sign",
|
|
19
18
|
"cli",
|
|
20
19
|
"document",
|
|
21
20
|
"signing",
|
|
22
|
-
"workflow"
|
|
23
|
-
"oclif"
|
|
21
|
+
"workflow"
|
|
24
22
|
],
|
|
25
23
|
"author": "Signstack",
|
|
26
24
|
"license": "MIT",
|