wispy-cli 0.9.0 → 1.1.1

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/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "wispy-cli",
3
- "version": "0.9.0",
3
+ "version": "1.1.1",
4
4
  "description": "🌿 Wispy — AI workspace assistant with multi-agent orchestration and multi-channel bot support",
5
- "license": "Apache-2.0",
5
+ "license": "MIT",
6
6
  "author": "Minseo & Poropo",
7
+ "homepage": "https://github.com/mindsurf0176-ui/poropo-workspace/tree/master/agent-workstream-os/wispy-cli#readme",
7
8
  "repository": {
8
9
  "type": "git",
9
- "url": "https://github.com/mindsurf0176-ui/poropo-workspace"
10
+ "url": "git+https://github.com/mindsurf0176-ui/poropo-workspace.git",
11
+ "directory": "agent-workstream-os/wispy-cli"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/mindsurf0176-ui/poropo-workspace/issues"
10
15
  },
11
16
  "keywords": [
12
17
  "ai",
@@ -19,13 +24,25 @@
19
24
  "gemini",
20
25
  "claude",
21
26
  "openai",
27
+ "groq",
28
+ "deepseek",
29
+ "ollama",
30
+ "openrouter",
22
31
  "tui",
23
32
  "ink",
24
33
  "telegram",
25
34
  "discord",
26
35
  "slack",
27
36
  "bot",
28
- "chatbot"
37
+ "chatbot",
38
+ "mcp",
39
+ "model-context-protocol",
40
+ "memory",
41
+ "cron",
42
+ "scheduler",
43
+ "subagent",
44
+ "terminal",
45
+ "repl"
29
46
  ],
30
47
  "type": "module",
31
48
  "bin": {
@@ -41,7 +58,9 @@
41
58
  ],
42
59
  "scripts": {
43
60
  "postinstall": "node scripts/postinstall.mjs",
44
- "test": "node --test test/basic.test.mjs"
61
+ "test": "node --test --test-force-exit --test-timeout=15000 tests/*.test.mjs",
62
+ "test:basic": "node --test --test-force-exit test/basic.test.mjs",
63
+ "test:verbose": "node --test --test-force-exit --test-timeout=15000 --test-reporter=spec tests/*.test.mjs"
45
64
  },
46
65
  "dependencies": {
47
66
  "cron-parser": "^5.5.0",
@@ -68,6 +87,6 @@
68
87
  }
69
88
  },
70
89
  "engines": {
71
- "node": ">=20.0.0"
90
+ "node": ">=18.0.0"
72
91
  }
73
92
  }