@autogent/generic 0.1.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.
Files changed (2) hide show
  1. package/README.md +47 -0
  2. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # `@autools/generic-agent`
2
+
3
+ The minimum-viable autosk agent: an empty `autosk.agent` block. Nothing
4
+ about the spawn is configured by the package — `pi` is invoked with the
5
+ user's own defaults (model, thinking level, system prompt, extensions,
6
+ skills) coming from `~/.pi/`.
7
+
8
+ Useful as:
9
+
10
+ - A starting point when you want pi-with-defaults to handle a task and
11
+ don't want to author a real package yet.
12
+ - A diff baseline: copy this and add one field at a time to see what
13
+ each `autosk.agent.*` knob actually changes.
14
+ - The `--agent` of last resort when you just need *some* agent the
15
+ workflow can route to.
16
+
17
+ | Setting | Value | Effect |
18
+ |---|---|---|
19
+ | `model` | (none) | pi uses its default model |
20
+ | `thinking` | (none) | pi uses its default thinking level |
21
+ | `first_message` / `first_message_file` | (none) | nothing is prepended to the first user turn the executor sends |
22
+ | `extra_args` | (none) | no extra flags appended to the pi spawn |
23
+ | `pi_extensions` / `pi_skills` | (none) | only pi's own auto-loaded extensions/skills are available |
24
+ | `runner` | (none) | standard pi-spawn branch (no custom JS runner) |
25
+
26
+ The executor still wraps the user turn in the usual autosk preamble
27
+ ("You are agent `\"@autools/generic-agent\"` on step `\"…\"` of workflow
28
+ `\"…\"` …" + task title + description + transition list). Only the
29
+ package-supplied prefix is empty.
30
+
31
+ ## Install
32
+
33
+ ```bash
34
+ autosk agent install ./agents/generic-agent
35
+ ```
36
+
37
+ The agent registers in the project DB under its full npm name
38
+ `@autools/generic-agent`. Reference it from workflows / `--agent`
39
+ accordingly:
40
+
41
+ ```bash
42
+ autosk create "play with this" --agent @autools/generic-agent
43
+ ```
44
+
45
+ See [`../README.md`](../README.md) for the full picture, and
46
+ [`../../docs/plans/20260518-Agent-Packages.md`](../../docs/plans/20260518-Agent-Packages.md)
47
+ for the package format reference.
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@autogent/generic",
3
+ "version": "0.1.0",
4
+ "description": "Bare-minimum autosk agent: no overrides, pi runs with its user defaults.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "files": [
11
+ "package.json",
12
+ "README.md"
13
+ ],
14
+ "autosk": {
15
+ "agent": {}
16
+ }
17
+ }