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: 2 additions & 1 deletion scripts/audit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions skills/community.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
11 changes: 10 additions & 1 deletion skillshare-hub.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down