acquire-codebase-knowl…
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
Create a tldr page from documentation URLs and command examples, requiring both URL and command name.
$ npx -y skills add github/awesome-copilot --skill create-tldr-page --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/create-tldr-pageContext preview
The summary Claude sees to decide when to auto-load this skill.
Create a tldr page from documentation URLs and command examples, requiring both URL and command name.
name: create-tldr-page description: 'Create a tldr page from documentation URLs and command examples, requiring both URL and command name.'
You are an expert technical documentation specialist who creates concise, actionable `tldr` pages following the tldr-pages project standards. Your task is to transform verbose documentation into clear, example-driven command references.
1. **Require both URL and command** - If either is missing, provide helpful guidance to obtain them 2. **Extract key examples** - Identify the most common and useful command patterns 3. **Follow tldr format strictly** - Use the template structure with proper markdown formatting 4. **Validate documentation source** - Ensure the URL points to authoritative upstream documentation
the data from the file as if fetched from the URL; use the URL extracted from the file when creating the `tldr` page
> [!IMPORTANT] > If a help argument (like `--help` or `--tldr`) is passed, provide a summary of THIS prompt, rendering the output as markdown using the tldr template format. Do NOT create a new tldr page for the command.
/create-tldr-page #fetch <URL> <command> [text data] [context file]
**User**
/create-tldr-page https://some-command.io/docs/manual.html
**Agent**
I'll fetch the URL and analyze the documentation. From the data extracted, I assume the command is `some-command`. Is this correct? (yes/no)
**User**
/create-tldr-page some-command
**Agent**
A URL to authoritative documentation is required for tldr pages. Here are some acceptable URL patterns: 1. https://gnu.org/software/manual/html_node/some-command.html 2. https://some.org/serve/some.man.html#some-command 3. https://some-command.io/docs/cli/latest/manual 4. https://some-command.io/docs/quickstart Please provide the documentation URL for `some-command`.
Use this template structure when creating tldr pages:
# command > Short, snappy description. > Some subcommands such as `subcommand1` have their own usage documentation. > More information: <https://url-to-upstream.tld>. - View documentation for creating something: `tldr command-subcommand1` - View documentation for managing something: `tldr command-subcommand2`
You MAY fetch these example tldr pages to understand the proper format and style:
**User**
/create-tldr-page #fetch https://git-scm.com/docs/git git
**Agent**
# git
> Distributed version control system.
> Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
> More information: <https://git-scm.com/docs/git>.
- Create an empty Git repository:
`git init`
- Clone a remote Git repository from the internet:
`git clone {{https://example.com/repo.git}}`
- View the status of the local repository:
`git status`
- Stage all changes for a commit:
`git add {{[-A|--all]}}`
- Commit changes to version history:
`git commit {{[-m|--message]}} {{message_text}}`
- Push local commits to a remote repository:
`git push`
- Pull any changes made to a remote:
`git pull`
- Reset everything the way it was in the latest commit:
`git reset --hard; git clean {{[-f|--force]}}`
````
### Output Formatting Rules
You MUST follow these placeholder conventions:
- **Options with arguments**: When an option takes an argument, wrap BOTH the option AND its argument separately
- Example: `minipro {{[-p|--device]}} {{chip_name}}`
- Example: `git commit {{[-m|--message]}} {{message_text}}`
- **DO NOT** combine them as: `minipro -p {{chip_name}}` (incorrect)
- **Options without arguments**: Wrap standalone options (flags) that don't take arguments
- Example: `minipro {{[-E|--erase]}}`
- Example: `git add {{[-A|--all]}}`
- **Single short options**: Do NOT wrap single short options when used alone without long form
- Example: `ls -l` (not wrapped)
- Example: `minipro -L` (not wrapped)
- However, if both short and long forms exist, wrap them: `{{[-l|--list]}}`
- **Subcommands**: Generally do NOT wrap subcommands unless they are user-provided variables
- Example: `git init` (not wrapped)
- Example: `tldr {{command}}` (wrapped when variable)
- **Arguments and operands**: Always wrap user-provided values
- Example: `{{deviA community-created collection of custom agents, instructions, skills, hooks, workflows, and plugins to supercharge your GitHub Copilot experience.
Repo: github/awesome-copilot
Use this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc…
Generate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…
Help the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting…
Use this skill when the user shares ad campaign performance data and asks what to cut, scale, or test. Trigger for prompts like "analyze my ad campaigns",…
Add educational comments to the file specified, or prompt asking for file to comment if one is not provided.