Skip to content

Commit 0c255fe

Browse files
Copilotpenge
andauthored
fix(skills): fix broken reference links (#2379)
Fix broken reference links in skills/agentstack-wrapper/SKILL.md. Co-authored-by: penge <907255+penge@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 9e21364 commit 0c255fe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

skills/agentstack-wrapper/SKILL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -166,19 +166,19 @@ This classification determines:
166166

167167
## Step 3 – Add and Install Dependencies
168168

169-
**Read [references/dependencies.md](reference/dependencies.md) and follow it completely for Step 3.**
169+
**Read [references/dependencies.md](references/dependencies.md) and follow it completely for Step 3.**
170170

171171
---
172172

173173
## Step 4 – Create the Server Wrapper & Entrypoint
174174

175-
**Read [references/wrapper-entrypoint.md](reference/wrapper-entrypoint.md) and follow it completely for Step 4.**
175+
**Read [references/wrapper-entrypoint.md](references/wrapper-entrypoint.md) and follow it completely for Step 4.**
176176

177177
---
178178

179179
## Step 5 – Wire LLM / Services via Extensions
180180

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

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

@@ -205,29 +205,29 @@ See the [official error guide](https://agentstack.beeai.dev/stable/agent-integra
205205

206206
If the original agent accepts **named parameters** (not just free text), map them to an `initial_form` using the Forms extension. For free-text agents, the plain message input is sufficient — skip this step.
207207

208-
**Read [references/forms.md](reference/forms.md) for the full implementation guide** (field types, Pydantic model, mid-conversation input).
208+
**Read [references/forms.md](references/forms.md) for the full implementation guide** (field types, Pydantic model, mid-conversation input).
209209

210210
---
211211

212212
## Step 7b – Adapt File Inputs
213213

214214
If the original agent reads files from the local filesystem or accepts file paths as CLI/function arguments, those inputs must be replaced with platform file uploads. Local filesystem access is not available at runtime. Even if the file contains plain text, still use a `FileField` upload — do not flatten file inputs into message text.
215215

216-
**Read [references/files.md](reference/files.md) for detection patterns, replacement steps, text extraction, and mid-conversation uploads.**
216+
**Read [references/files.md](references/files.md) for detection patterns, replacement steps, text extraction, and mid-conversation uploads.**
217217

218218
---
219219

220220
## Step 8 – Configuration Variables & Secrets
221221

222-
**Read [references/configuration-variables.md](reference/configuration-variables.md) and follow it completely for configuration mapping, secret handling, and anti-patterns.**
222+
**Read [references/configuration-variables.md](references/configuration-variables.md) and follow it completely for configuration mapping, secret handling, and anti-patterns.**
223223

224224
---
225225

226226
## Step 9 – Agent Output
227227

228228
### Trajectory Output Rule and Implementation
229229

230-
**Read [references/trajectory.md](reference/trajectory.md) and follow it completely for trajectory decision rules and implementation.**
230+
**Read [references/trajectory.md](references/trajectory.md) and follow it completely for trajectory decision rules and implementation.**
231231

232232
### Final Output Rule
233233

@@ -249,7 +249,7 @@ Use the platform's API to construct an `AgentArtifact` pointing to the generated
249249

250250
Enhance the agent with platform-level capabilities by injecting extensions via `Annotated` function parameters.
251251

252-
**Read [references/platform-extensions.md](reference/platform-extensions.md) for extension selection and documentation links.**
252+
**Read [references/platform-extensions.md](references/platform-extensions.md) for extension selection and documentation links.**
253253

254254
Treat this reference as required input for Step 10 decisions and implementation.
255255

0 commit comments

Comments
 (0)