en un clic
add-tool-from-page
Add a new tool to altbox from the URL $ARGUMENTS.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Add a new tool to altbox from the URL $ARGUMENTS.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| 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.").