@markjaquith/agency 3.4.0 → 3.4.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markjaquith/agency",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Manage agentic work across repositories with durable workbases",
5
5
  "keywords": [
6
6
  "agents",
@@ -129,10 +129,11 @@ const skillInfo = (location: string) => {
129
129
  const id = basename(location) === "SKILL.md"
130
130
  ? basename(dirname(location))
131
131
  : basename(location, extname(location))
132
+ const description = scalar("description")
132
133
  return {
133
134
  id,
134
135
  name: scalar("name") ?? id,
135
- description: scalar("description"),
136
+ ...(description === undefined ? {} : { description }),
136
137
  location,
137
138
  content: match ? raw.slice(match[0].length) : raw,
138
139
  }