find-me-skills

Discovers Agent Skills matching an unstated goal and exports an installable asm bundle.

904|84|Updated Mar 11, 2026
One-click install
npx skills add https://github.com/luongnv89/asm --skill find-me-skills
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: find-me-skills
Source: https://github.com/luongnv89/asm/tree/main/skills/find-me-skills
Command: npx skills add https://github.com/luongnv89/asm --skill find-me-skills

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Users often know what they want to achieve but not which Agent Skills exist to help. This Skill turns a vague goal into a curated, sequenced set of real skills from the live asm catalog, ending with a single installable bundle file.

Core Features & Use Cases

  • Goal elicitation and confirmation: Conversationally draws out the user's objective and confirms understanding before searching, preventing confidently-wrong recommendations.
  • Live catalog discovery: Queries the asm CLI with multiple search terms, dedupes results, excludes already-installed skills, and explains each candidate in plain language.
  • Sequenced plan and bundle export: Orders skills into a step-by-step path with inputs and outputs, then writes a validated BundleManifest JSON file installable via asm bundle install.
  • Use Case: A founder says "I'm launching a SaaS and need marketing but don't know where to start." The Skill confirms the goal, searches the catalog for positioning, landing page, and launch copy skills, presents a numbered plan, and hands over a marketing-starter.bundle.json with one install command.

Quick Start

Ask the agent to find and bundle skills for a goal you can describe but cannot name specific skills for, such as "find me skills to market my new app from scratch."

Frequently Asked Questions about find-me-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find Agent Skills when I don't know their names?

Describe your goal conversationally and let the Skill confirm it, then it runs asm search with several derived terms against the live catalog. It curates, explains, and sequences the matching skills into a plan you approve before anything is installed.

How do I install multiple Agent Skills at once with asm?

Use a bundle file in asm's BundleManifest format and run asm bundle install ./file.bundle.json. The Skill generates this file with each skill's name and installUrl copied verbatim from asm search results, then validates it with asm bundle show.

Does find-me-skills work without the asm CLI installed?

No. The Skill checks for asm on PATH at the start and stops if it is missing, directing you to install it with npm install -g agent-skill-manager. All catalog discovery and bundle validation depend on the CLI.

What happens if some recommended skills are already installed?

The Skill runs asm search without --available to detect installed skills. Installed matches are mentioned in the plan but excluded from the bundle, since bundles only contain new installs with a remote installCommand.

When should I not use find-me-skills?

Skip it when you already know the skill name you want — just run asm install directly. It is also not for authoring new skills or maintaining the catalog; use skill-creator for skills that do not exist yet.