Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions skills/agentstack-wrapper/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Task Progress:
- [ ] Step 3: Add and Install Dependencies
- [ ] Step 4: Create the Server Wrapper & Entrypoint
- [ ] Step 5: Wire LLM / Services via Extensions (requires reading docs)
- [ ] Step 5a: Set suggested model to match the model used in the original agent
- [ ] Step 6: Implement Error Handling (requires reading docs)
- [ ] Step 7: Map Forms (if applicable) (requires reading docs)
- [ ] Step 7b: Adapt File Inputs (if applicable) (requires reading docs)
Expand Down Expand Up @@ -179,6 +180,8 @@ This classification determines:

**Read [references/llm-services.md](reference/llm-services.md) and follow it completely for Step 5.**

Set the `suggested` model in `LLMServiceExtensionSpec.single_demand()` to the same model used in the original agent.

---

## Step 6 – Error Handling
Expand Down
1 change: 1 addition & 0 deletions skills/agentstack-wrapper/references/llm-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ See the [chat agent](https://github.com/i-am-bee/agentstack/blob/main/agents/cha
- Do not skip the docs/examples and improvise imports or extension usage.
- Do not read model/API key/base URL from env vars when LLM extension is available.
- Do not rewrite `api_base` heuristically unless the official docs explicitly require it.
- Do not use a generic model as `suggested` — use the same model identifier as the original agent.
Loading