terminal-tool-for-agents 0.1.3 → 0.1.5
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terminal-tool-for-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "terminal-tool-for-agents (tta) — terminal tool for AI agents. Command: tta. Package: terminal-tool-for-agents.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -38,9 +38,8 @@
|
|
|
38
38
|
"start": "node dist/cli.js",
|
|
39
39
|
"test": "node scripts/verify.js",
|
|
40
40
|
"prepack": "npm run build",
|
|
41
|
-
"version": "node scripts/sync-skill-version.js",
|
|
42
41
|
"prepublishOnly": "npm test",
|
|
43
|
-
"release": "
|
|
42
|
+
"release": "release-it"
|
|
44
43
|
},
|
|
45
44
|
"dependencies": {
|
|
46
45
|
"@fastify/static": "^9.1.3",
|
|
@@ -56,6 +55,7 @@
|
|
|
56
55
|
"@types/ws": "^8.18.1",
|
|
57
56
|
"concurrently": "^9.2.1",
|
|
58
57
|
"nodemon": "^3.1.11",
|
|
58
|
+
"release-it": "^20.2.0",
|
|
59
59
|
"typescript": "^6.0.0"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
package/skills/tta/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tta
|
|
3
|
-
version: 0.1.
|
|
3
|
+
version: 0.1.5
|
|
4
4
|
description: Operate interactive CLI, TUI, and dev-server sessions through a PTY. Use when a command needs keystrokes, redraws a terminal UI, step-by-step screen reads, or for npm create, lazygit, npm run dev, etc. Not for plain non-interactive bash. APIs: sess, act, obs. Bundled tta-agents sub-skill when the user uses tta with coding agents.
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tta-agents
|
|
3
|
-
version: 0.1.
|
|
3
|
+
version: 0.1.5
|
|
4
4
|
description: Bundled tta sub-skill. When triggered: current agent is Orchestrator; serially schedules multiple workers (separated concerns, e.g. code/review/test). Workers cannot use tta; feedback relayed by Orchestrator. Must obey user permission scope. Use when driving coding agents via tta or when user mentions Orchestrator/Worker.
|
|
5
5
|
---
|
|
6
6
|
|