Skip to content

Latest commit

 

History

History
66 lines (39 loc) · 1.94 KB

File metadata and controls

66 lines (39 loc) · 1.94 KB

Agent Usage

Positioning

This repository is primarily an agent-skill repository, not a generic command-line graphics toolkit.

The main deliverable is reusable skill packaging under skills/, so agents can accept natural-language requests such as:

  • "Turn this text into an editorial info card."
  • "Make this into a 4:3 information card."
  • "Use the editorial-card-screenshot skill and output HTML plus a PNG."

Install Unit

For the current repository, the installable unit is the full skill directory:

  • skills/editorial-card-screenshot

Agents should install or copy the whole package rather than a single file.

What Needs To Be Installed

The package includes:

  • SKILL.md
  • assets/
  • references/
  • scripts/
  • agents/ when supported by the host agent

The shell script and references are support files for the skill. They are not meant to be installed independently.

How the Skill Is Meant to Work

For the current editorial-card-screenshot skill:

  1. the user gives source material in natural language
  2. the agent follows the behavior contract in SKILL.md
  3. the agent applies the stored editorial prompt rules
  4. the agent generates the HTML card
  5. if image output is requested, the agent uses the bundled screenshot helper internally

What the Script Is

skills/editorial-card-screenshot/scripts/capture_card.sh exists to support rendering, but it is not the primary user interface.

The primary interface is the agent itself.

Verification Prompts

After installation, a good verification prompt is:

  • Use $editorial-card-screenshot to make a 3:4 editorial info card from these notes.

Other useful prompts:

  • Use $editorial-card-screenshot and give me HTML only.
  • Use $editorial-card-screenshot and render both HTML and PNG.

Current Scope

Today the repository contains one packaged skill:

  • editorial-card-screenshot

Over time, more information-card skills can be added under skills/ using the same structure.