with one click
add-tool-from-page
Add a new tool to altbox from the URL $ARGUMENTS.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Add a new tool to altbox from the URL $ARGUMENTS.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | add-tool-from-page |
| description | Add a new tool to altbox from the URL $ARGUMENTS. |
| tools | ["WebFetch","WebSearch","Bash","Read","Write","Edit"] |
Follow these steps:
Research the tool by fetching its homepage and/or GitHub repo page at $ARGUMENTS. Gather:
Find a screenshot:
Create the directory tool/<slug>/ and write tool/<slug>/index.yaml using this schema:
The writing style should be geared more towards bullet lists than long paragraphs of lists of features.
Don't use bolding.
Download the screenshot:
curl -sL "<image URL>" -o tool/<slug>/screenshot.png
Verify it downloaded as a valid image with file tool/<slug>/screenshot.png.
If no suitable screenshot exists anywhere, skip the screenshots block and the {{screenshot: ...}} line in the body.
Show the contents of the created YAML file and confirm the screenshot was saved.
This is a sample of the index.yaml.
---
name: <toolname>
author: <Full Name>
homepage: <homepage URL, omit if same as project>
project: <GitHub or project URL>
language: <Language>
alternativeto: <standard tool this replaces, lowercase>
workswith: <optional tool it integrates with, lowercase>
description: <One-line description ending with a period.>
last_updated: <YYYY-MM-DD — today's date, when this index.yaml is being created>
screenshots:
- file: screenshot.png
caption: <descriptive caption>
body: |
<One or two sentence intro>
## Features
- <Feature 1>
- <Feature 2>
- <Feature 3>
- ...
{{screenshot: screenshot.png, "<caption>"}}
Notes:
Always quote screenshot captions with double quotes in the {{screenshot:}} shortcode (e.g.
{{screenshot: screenshot.png, "My caption"}}). The shortcode parser splits on commas, so an
unquoted caption containing commas will have everything after the first comma mistakenly treated
as a URL. Quoting avoids this regardless of caption content.
homepage and project can be the same URL; omit homepage if so (use only project)
alternativeto and workswith values must be lowercase
workswith is optional — omit if not applicable
Use 4-space indentation throughout
All fenced code blocks must have a language identifier (e.g. ```bash)
Inline comments in code blocks must be complete sentences with a capital first letter and ending period (e.g. # Search only Perl files.)
Use actual headings for grouping content. For example:
--highlight: Background color changes instead of foreground--line-numbers: Add line numbering to output--recursive: Compare subdirectories--whole-file: Display entire files rather than just changed sections--color-map: Customize color scheme for different diff elementsAvailable on Linux, macOS, and Windows.
Do not use bold formatting anywhere in the body — not in list items, not in headings, not inline.
For availability/installation, do not list install commands or package managers. Just state which operating systems the tool runs on (e.g., "Available on Linux, macOS, and Windows.").