@promptowl/contextnest-cli 0.1.0 → 0.3.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.
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+ import { createRequire as __createRequire } from "node:module";
3
+ const require = __createRequire(import.meta.url);
4
+ import {
5
+ parseSelector
6
+ } from "./chunk-ISTWO5D6.js";
7
+ export {
8
+ parseSelector
9
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptowl/contextnest-cli",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Command-line tool for Context Nest vault operations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,11 +10,12 @@
10
10
  "scripts": {
11
11
  "build": "tsup",
12
12
  "clean": "rm -rf dist",
13
+ "postinstall": "echo \"\n Context Nest CLI installed successfully.\n\n Get started:\n ctx init --starter developer # Engineering vault\n ctx init --starter executive # Strategy vault\n ctx init --starter analyst # Research / OSINT vault\n ctx init --starter team # Team knowledge base\n ctx init --list-starters # See all options\n\n Or just run: ctx init\n\n Docs: https://github.com/PromptOwl/context-nest\n Context Nest by PromptOwl — https://promptowl.com\n\"",
13
14
  "test": "vitest run",
14
15
  "test:watch": "vitest"
15
16
  },
16
17
  "dependencies": {
17
- "@promptowl/contextnest-engine": "workspace:*",
18
+ "@promptowl/contextnest-engine": "^0.2.0",
18
19
  "commander": "^13.0.0",
19
20
  "chalk": "^5.4.0",
20
21
  "cli-table3": "^0.6.5"
@@ -24,6 +25,6 @@
24
25
  "tsup": "^8.0.0",
25
26
  "vitest": "^3.0.0"
26
27
  },
27
- "files": ["dist"],
28
+ "files": ["dist", "README.md"],
28
29
  "license": "Apache-2.0"
29
30
  }