diff --git a/scripts/audit.sh b/scripts/audit.sh index acffb7c..72824ae 100755 --- a/scripts/audit.sh +++ b/scripts/audit.sh @@ -48,7 +48,8 @@ audit_target() { local source="$1" audit_target="$2" local audit_json - audit_json=$(skillshare audit "$audit_target" --threshold high --json 2>/dev/null) || true + # Strip trailing non-JSON output (e.g. upgrade notices) before parsing + audit_json=$(skillshare audit "$audit_target" --threshold high --json 2>/dev/null | sed '/^$/,$d') || true if ! echo "$audit_json" | jq -e '.summary' >/dev/null 2>&1; then local audit_err diff --git a/skills/community.json b/skills/community.json index f43892a..349cbc2 100644 --- a/skills/community.json +++ b/skills/community.json @@ -41,6 +41,15 @@ "agent" ] }, + { + "name": "context7", + "description": "Retrieve up-to-date documentation for software libraries by querying the Context7 API", + "source": "intellectronica/agent-skills/skills/context7", + "tags": [ + "docs", + "ai" + ] + }, { "name": "create-auth-skill", "description": "Create custom authentication skills using Better Auth framework", diff --git a/skillshare-hub.json b/skillshare-hub.json index 7254d27..1518177 100644 --- a/skillshare-hub.json +++ b/skillshare-hub.json @@ -12,7 +12,7 @@ { "name": "agent-browser", "description": "Browser automation agent for web page interactions using Playwright", - "source": "vercel-labs/agent-browser", + "source": "vercel-labs/agent-browser/skills/agent-browser", "tags": [ "agent", "browser" @@ -136,6 +136,15 @@ "marketing" ] }, + { + "name": "context7", + "description": "Retrieve up-to-date documentation for software libraries by querying the Context7 API", + "source": "intellectronica/agent-skills/skills/context7", + "tags": [ + "docs", + "ai" + ] + }, { "name": "copy-editing", "description": "Edit and improve marketing copy for clarity and impact",