tuplet 2.8.0 → 2.9.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/README.md +19 -19
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
> Formerly **Hive Agent** ([`@alexnetrebskii/hive-agent`](https://www.npmjs.com/package/@alexnetrebskii/hive-agent)) — same framework, new name.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/tuplet)
|
|
6
|
-
[](https://github.com/anetrebskii/tuplet/actions)
|
|
7
|
+
[](https://github.com/anetrebskii/tuplet/blob/main/LICENSE)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
9
9
|
[](https://discord.gg/WrZhA6wfdr)
|
|
10
10
|
|
|
@@ -112,26 +112,26 @@ console.log(result.response)
|
|
|
112
112
|
|
|
113
113
|
## Examples
|
|
114
114
|
|
|
115
|
-
- [**Coder**](https://github.com/anetrebskii/
|
|
116
|
-
- [**Eating Consultant**](https://github.com/anetrebskii/
|
|
115
|
+
- [**Coder**](https://github.com/anetrebskii/tuplet/tree/main/examples/coder) — AI software developer that creates projects from scratch using built-in shell, workspace, planning, and task tracking. Zero custom tools.
|
|
116
|
+
- [**Eating Consultant**](https://github.com/anetrebskii/tuplet/tree/main/examples/eating-consultant) — Nutrition assistant with custom tools (OpenFoodFacts API), sub-agents (meal planner), workspace persistence, and run recording.
|
|
117
117
|
|
|
118
118
|
## Documentation
|
|
119
119
|
|
|
120
|
-
- [Quick Start](https://github.com/anetrebskii/
|
|
121
|
-
- [Tools](https://github.com/anetrebskii/
|
|
122
|
-
- [Sub-Agents](https://github.com/anetrebskii/
|
|
123
|
-
- [Workspace](https://github.com/anetrebskii/
|
|
124
|
-
- [Secrets](https://github.com/anetrebskii/
|
|
125
|
-
- [Providers](https://github.com/anetrebskii/
|
|
126
|
-
- [History](https://github.com/anetrebskii/
|
|
127
|
-
- [Interactive Questions](https://github.com/anetrebskii/
|
|
128
|
-
- [Interruption](https://github.com/anetrebskii/
|
|
129
|
-
- [Plan Mode](https://github.com/anetrebskii/
|
|
130
|
-
- [Task Management](https://github.com/anetrebskii/
|
|
131
|
-
- [Progress Status](https://github.com/anetrebskii/
|
|
132
|
-
- [Logger](https://github.com/anetrebskii/
|
|
133
|
-
- [Tracing](https://github.com/anetrebskii/
|
|
134
|
-
- [Run Recording](https://github.com/anetrebskii/
|
|
120
|
+
- [Quick Start](https://github.com/anetrebskii/tuplet/blob/main/docs/README.md)
|
|
121
|
+
- [Tools](https://github.com/anetrebskii/tuplet/blob/main/docs/tools.md)
|
|
122
|
+
- [Sub-Agents](https://github.com/anetrebskii/tuplet/blob/main/docs/sub-agents.md)
|
|
123
|
+
- [Workspace](https://github.com/anetrebskii/tuplet/blob/main/docs/workspace.md)
|
|
124
|
+
- [Secrets](https://github.com/anetrebskii/tuplet/blob/main/docs/secrets.md)
|
|
125
|
+
- [Providers](https://github.com/anetrebskii/tuplet/blob/main/docs/providers.md)
|
|
126
|
+
- [History](https://github.com/anetrebskii/tuplet/blob/main/docs/history.md)
|
|
127
|
+
- [Interactive Questions](https://github.com/anetrebskii/tuplet/blob/main/docs/interactive.md)
|
|
128
|
+
- [Interruption](https://github.com/anetrebskii/tuplet/blob/main/docs/interruption.md)
|
|
129
|
+
- [Plan Mode](https://github.com/anetrebskii/tuplet/blob/main/docs/plan-mode.md)
|
|
130
|
+
- [Task Management](https://github.com/anetrebskii/tuplet/blob/main/docs/task-management.md)
|
|
131
|
+
- [Progress Status](https://github.com/anetrebskii/tuplet/blob/main/docs/progress-status.md)
|
|
132
|
+
- [Logger](https://github.com/anetrebskii/tuplet/blob/main/docs/logger.md)
|
|
133
|
+
- [Tracing](https://github.com/anetrebskii/tuplet/blob/main/docs/tracing.md)
|
|
134
|
+
- [Run Recording](https://github.com/anetrebskii/tuplet/blob/main/docs/run-recording.md)
|
|
135
135
|
|
|
136
136
|
## License
|
|
137
137
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tuplet",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Tuplet — minimal TypeScript agent framework inspired by Claude Code architecture",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,6 +24,14 @@
|
|
|
24
24
|
"framework",
|
|
25
25
|
"tuplet"
|
|
26
26
|
],
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/anetrebskii/tuplet.git"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/anetrebskii/tuplet#readme",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/anetrebskii/tuplet/issues"
|
|
34
|
+
},
|
|
27
35
|
"author": "",
|
|
28
36
|
"license": "MIT",
|
|
29
37
|
"engines": {
|