agentsclimarketplace

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

Install
npx -y skills add itsbdell/made-json-agent-skills --skill made-json-publisher

Assembled 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

  1. Find the feed file.

    • Prefer ./made.json.
    • Also check public output paths such as public/made.json, static/made.json, or site/made.json.
    • If no feed exists, create made.json with version: "1.0" and items: [].
    • Use the resolved feed path as <feed-path> in every validation and CLI command below.
  2. Identify the item entry.

    • Required: name, url.
    • Prefer a stable lowercase id.
    • Include kind when 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, and forkable when the project has evidence for them.
    • Treat vibe_coded, forkable, source, prompt_log, and replaces as 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.
  3. Update timestamps.

    • Set feed-level updated when the file changes.
    • Set item-level updated when adding or materially changing an item.
    • Use ISO 8601 date-time strings.
  4. Validate.

    • Run npx @made-json/cli validate <feed-path> when available.
    • If working inside the main made-json repo, run node appfeed/bin/appfeed.js validate <feed-path>.
    • Fix schema errors before finishing.
  5. 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.

Keep looking

Skills are one crate of 326,629. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.