prompt-language-shell 0.7.4 → 0.7.8
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 +3 -3
- package/dist/services/anthropic.js +3 -2
- package/dist/services/colors.js +59 -0
- package/dist/services/components.js +8 -0
- package/dist/services/router.js +101 -79
- package/dist/services/skills.js +2 -2
- package/dist/services/utils.js +6 -0
- package/dist/skills/answer.md +2 -2
- package/dist/skills/execute.md +23 -11
- package/dist/skills/introspect.md +3 -3
- package/dist/skills/schedule.md +80 -30
- package/dist/tools/answer.tool.js +1 -1
- package/dist/tools/configure.tool.js +1 -1
- package/dist/tools/execute.tool.js +6 -2
- package/dist/tools/introspect.tool.js +3 -3
- package/dist/tools/schedule.tool.js +1 -1
- package/dist/ui/Answer.js +3 -0
- package/dist/ui/Command.js +3 -5
- package/dist/ui/Execute.js +106 -202
- package/dist/ui/Introspect.js +4 -2
- package/dist/ui/Subtask.js +11 -0
- package/dist/ui/Task.js +81 -0
- package/dist/ui/Validate.js +3 -0
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prompt-language-shell",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.8",
|
|
4
4
|
"description": "Your personal command-line concierge. Ask politely, and it gets things done.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,8 +17,9 @@
|
|
|
17
17
|
"dev": "npm run build && tsc --watch",
|
|
18
18
|
"prepare": "husky",
|
|
19
19
|
"prepublishOnly": "npm run check",
|
|
20
|
-
"test": "vitest run",
|
|
21
|
-
"test:watch": "vitest",
|
|
20
|
+
"test": "vitest run --exclude 'tests/integration/*.test.tsx'",
|
|
21
|
+
"test:watch": "vitest --exclude 'tests/integration/*.test.tsx'",
|
|
22
|
+
"test:llm": "vitest run tests/integration/schedule*.test.tsx",
|
|
22
23
|
"format": "prettier --write '**/*.{ts,tsx}'",
|
|
23
24
|
"format:check": "prettier --check '**/*.{ts,tsx}'",
|
|
24
25
|
"lint": "eslint .",
|