@agent-scope/cli 1.6.0 → 1.8.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/dist/index.d.cts CHANGED
@@ -62,4 +62,9 @@ interface ScopeCLIOptions {
62
62
  /** Build and return the Scope CLI program */
63
63
  declare function createProgram(options?: ScopeCLIOptions): Command;
64
64
 
65
- export { type ListRow, type QueryRow, type ScopeCLIOptions, createManifestCommand, createProgram, isTTY, matchGlob };
65
+ /**
66
+ * Create and return the `tokens` command group.
67
+ */
68
+ declare function createTokensCommand(): Command;
69
+
70
+ export { type ListRow, type QueryRow, type ScopeCLIOptions, createManifestCommand, createProgram, createTokensCommand, isTTY, matchGlob };
package/dist/index.d.ts CHANGED
@@ -62,4 +62,9 @@ interface ScopeCLIOptions {
62
62
  /** Build and return the Scope CLI program */
63
63
  declare function createProgram(options?: ScopeCLIOptions): Command;
64
64
 
65
- export { type ListRow, type QueryRow, type ScopeCLIOptions, createManifestCommand, createProgram, isTTY, matchGlob };
65
+ /**
66
+ * Create and return the `tokens` command group.
67
+ */
68
+ declare function createTokensCommand(): Command;
69
+
70
+ export { type ListRow, type QueryRow, type ScopeCLIOptions, createManifestCommand, createProgram, createTokensCommand, isTTY, matchGlob };