Made json publisher
Skill itsbdell/made-json-agent-skills/skills/made-json-publisher
Use when maintaining a made.json feed for a project or creator: add newly shipped items, update changed metadata, preserve creator-declared claims, and validate the feed.From its SKILL.md
npx -y skills add itsbdell/made-json-agent-skills --skill made-json-publisherAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.9 KB, 688 tokens by cl100k_base, as published. Nobody here has run it
made.json Publisher
Use this skill when a user asks to publish, update, maintain, or validate a
made.json feed, or when a project change ships a creator-made artifact that
should appear in the feed, including apps, Claude/Codex skills, CLIs, MCP
servers, prompts, workflows, agents, extensions, templates, or other useful
software.
Workflow
-
Find the feed file.
- Prefer
./made.json. - Also check public output paths such as
public/made.json,static/made.json, orsite/made.json. - If no feed exists, create
made.jsonwithversion: "1.0"anditems: []. - Use the resolved feed path as
<feed-path>in every validation and CLI command below.
- Prefer
-
Identify the item entry.
- Required:
name,url. - Prefer a stable lowercase
id. - Include
kindwhen it is clear:app,tool,skill,prompt,workflow,agent,template,mcp-server,cli,library, or another useful hint. - Include
description,tags,targets,source,prompt_log,replaces,vibe_coded, andforkablewhen the project has evidence for them. - Treat
vibe_coded,forkable,source,prompt_log, andreplacesas creator-declared metadata, not endorsements. - For skills, CLIs, MCP servers, prompts, workflows, templates, and other installable artifacts, add or update the entry only when there is clear evidence of creator/workspace ownership, canonical URL or source, intended install/use target, and current status.
- Do not add downloaded marketplace/plugin-cache skills, vendored examples, copied third-party tools, or unclear private automation directly to the feed. Report a confirmation question instead.
- Required:
-
Update timestamps.
- Set feed-level
updatedwhen the file changes. - Set item-level
updatedwhen adding or materially changing an item. - Use ISO 8601 date-time strings.
- Set feed-level
-
Validate.
- Run
npx @made-json/cli validate <feed-path>when available. - If working inside the main
made-jsonrepo, runnode appfeed/bin/appfeed.js validate <feed-path>. - Fix schema errors before finishing.
- Run
-
Report what changed.
- Mention the item id/name added or updated.
- Mention validation result.
- If CORS/deployment headers are relevant, remind the user to serve
Access-Control-Allow-Origin: *.
CLI Shortcut
When the appfeed CLI is available, prefer:
appfeed add <feed-path> \
--name "Item Name" \
--kind tool \
--url "https://example.com/item" \
--description "One sentence." \
--tags "utility,ai" \
--target "web|https://example.com/item|Open"
Use --replace when updating an existing entry with the same id or url.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.