@ai-dossier/cli 0.5.1 → 0.7.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 +13 -2
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # Dossier CLI - Security Verification Tool
1
+ # @ai-dossier/cli
2
+
3
+ [![npm version](https://img.shields.io/npm/v/@ai-dossier/cli)](https://www.npmjs.com/package/@ai-dossier/cli)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@ai-dossier/cli)](https://www.npmjs.com/package/@ai-dossier/cli)
5
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://github.com/imboard-ai/ai-dossier/blob/main/LICENSE)
2
6
 
3
7
  **Enforce cryptographic verification before executing dossiers.**
4
8
 
@@ -687,12 +691,19 @@ Exit 0 (safe) or 1 (unsafe)
687
691
  - ✅ CLI parity with dossier-tools
688
692
  - ✅ `@ai-dossier` npm scope and CI/CD publishing
689
693
 
690
- ### v0.4.0 (Current)
694
+ ### v0.4.0
691
695
  - ✅ Unified dossier parser across core/cli/mcp
692
696
  - ✅ JSON output mode (`--json` flag on commands)
693
697
  - ✅ Registry integration (publish, remove, install-skill)
694
698
  - ✅ Non-TTY stdin detection
695
699
 
700
+ ### v0.5.0 (Current)
701
+ - ✅ Multi-registry support with parallel resolution
702
+ - ✅ `dossier create` command with meta-dossier templates
703
+ - ✅ `dossier export` and `dossier pull` commands
704
+ - ✅ Agent discovery (`--agent` flag)
705
+ - ✅ Enhanced auth: browser OAuth and env-based tokens
706
+
696
707
  ### v1.0.0 (Stable)
697
708
  - ⏳ Complete signature verification
698
709
  - ⏳ Trust management UI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-dossier/cli",
3
- "version": "0.5.1",
3
+ "version": "0.7.0",
4
4
  "description": "Command-line tool for creating, verifying, and executing dossiers",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -38,15 +38,14 @@
38
38
  "url": "https://github.com/imboard-ai/ai-dossier/issues"
39
39
  },
40
40
  "engines": {
41
- "node": ">=18.0.0"
41
+ "node": ">=20.0.0"
42
42
  },
43
- "preferGlobal": true,
44
43
  "publishConfig": {
45
44
  "access": "public",
46
45
  "registry": "https://registry.npmjs.org"
47
46
  },
48
47
  "dependencies": {
49
- "@ai-dossier/core": "^1.0.1",
48
+ "@ai-dossier/core": "^1.2.0",
50
49
  "commander": "^12.1.0"
51
50
  },
52
51
  "devDependencies": {