@autogent/generic
v0.1.0
Published
Bare-minimum autosk agent: no overrides, pi runs with its user defaults.
Downloads
66
Readme
@autools/generic-agent
The minimum-viable autosk agent: an empty autosk.agent block. Nothing
about the spawn is configured by the package — pi is invoked with the
user's own defaults (model, thinking level, system prompt, extensions,
skills) coming from ~/.pi/.
Useful as:
- A starting point when you want pi-with-defaults to handle a task and don't want to author a real package yet.
- A diff baseline: copy this and add one field at a time to see what
each
autosk.agent.*knob actually changes. - The
--agentof last resort when you just need some agent the workflow can route to.
| Setting | Value | Effect |
|---|---|---|
| model | (none) | pi uses its default model |
| thinking | (none) | pi uses its default thinking level |
| first_message / first_message_file | (none) | nothing is prepended to the first user turn the executor sends |
| extra_args | (none) | no extra flags appended to the pi spawn |
| pi_extensions / pi_skills | (none) | only pi's own auto-loaded extensions/skills are available |
| runner | (none) | standard pi-spawn branch (no custom JS runner) |
The executor still wraps the user turn in the usual autosk preamble
("You are agent \"@autools/generic-agent\" on step \"…\" of workflow
\"…\" …" + task title + description + transition list). Only the
package-supplied prefix is empty.
Install
autosk agent install ./agents/generic-agentThe agent registers in the project DB under its full npm name
@autools/generic-agent. Reference it from workflows / --agent
accordingly:
autosk create "play with this" --agent @autools/generic-agentSee ../README.md for the full picture, and
../../docs/plans/20260518-Agent-Packages.md
for the package format reference.
