Agent Skill · cast summarize-cwl-tool
Derive a CommandLineTool description (container, baseCommand, IO) for a CWL target.
← All cast skills · Source mold →
Install with Claude Code
/plugin marketplace add galaxyproject/foundry
/plugin install foundry-skills@galaxy-workflow-foundry
Then invoke as:
/foundry-skills:summarize-cwl-tool
Install with Codex
codex plugin marketplace add galaxyproject/foundry
codex plugin add foundry-skills@galaxy-workflow-foundry
Then select with /skills or invoke explicitly as:
$summarize-cwl-tool
Skill Bundle
/ packaged cast
- attached files
- 0
- upfront
- 0
- on demand
- 0
- cast rev
- n/a
- validated
- 0
Artifact Contract
/ skill handoff Produces
cwl-tool-summary
Compact CWL CommandLineTool summary: container, baseCommand, inputs, outputs, requirements, version metadata.
jsoncwl-tool-summary.json
Raw artifact contract
{
"id": "cwl-tool-summary",
"kind": "json",
"default_filename": "cwl-tool-summary.json",
"description": "Compact CWL CommandLineTool summary: container, baseCommand, inputs, outputs, requirements, version metadata."
}
SKILL.md
# summarize-cwl-tool
Follow the procedure below and use the artifact/reference sections as the runtime contract.
## When To Use
- Derive a CommandLineTool description (container, baseCommand, IO) for a CWL target.
## Inputs
- No upstream artifact inputs declared. See the procedure for user-supplied runtime inputs.
## Outputs
- Write artifact `cwl-tool-summary` as `cwl-tool-summary.json`. Format: `json`. Compact CWL CommandLineTool summary: container, baseCommand, inputs, outputs, requirements, version metadata.
## Required Tools
- None declared. Procedure should not assume external CLIs are present.
## Load Upfront
- None declared.
## Load On Demand
- None declared.
## Validation
- None declared.
## Procedure
Read a tool's container, `baseCommand`, and IO evidence and emit a compact CWL CommandLineTool summary — container, baseCommand, inputs, outputs, requirements, and version metadata.
## Runtime Notes
- Do not read Foundry source files at runtime; use only files packaged in this skill bundle and user-supplied artifacts.
- Preserve declared artifact filenames unless the user or harness supplies explicit paths.
- Carry unresolved assumptions into the output artifact instead of silently inventing missing source evidence.