agentsclimarketplace

Software tool enumeration

Skill HolobiomicsLab/asb-skill-collections/collections/metabolomics/v2/skills/software-tool-enumeration

Use when a software package claims to bundle or install a specific number of tools (documented or approximate) but the tool names, versions, and sources are not enumerated in the primary README or documentation.From its SKILL.md

Install
npx -y skills add HolobiomicsLab/asb-skill-collections --skill software-tool-enumeration

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 15 stars15 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its file declares

Copied from the file, not written here

The file declares its own license as CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

7.0 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

software-tool-enumeration

Summary

Systematically enumerate, document, and validate the complete set of bioinformatic tools bundled in a software package by parsing installation scripts, dependency manifests, and repository structure. This skill is essential when a package claims to bundle a large number of tools (e.g., ~89 for metabolomics pipelines) but the README or documentation does not list them explicitly.

When to use

A software package claims to bundle or install a specific number of tools (documented or approximate) but the tool names, versions, and sources are not enumerated in the primary README or documentation. You need to produce a structured manifest for reproducibility, dependency tracking, or validation purposes.

When NOT to use

  • The package's tool list is already fully enumerated and validated in the README or a manifest file distributed with the package.
  • The package does not claim a specific tool count, or the claim is only aspirational and not tied to reproducible installation.
  • You need to execute or test the installation yourself; this skill focuses on static manifest extraction, not installation verification.

Inputs

  • GitHub repository URL (or local clone path)
  • Installation script(s) (e.g., shell scripts named setup, install)
  • Dependency manifests (e.g., requirements.txt, package lists, apt sources)
  • README and documentation files
  • Version history or changelog (if available)

Outputs

  • Structured tool manifest (CSV, JSON, or TSV with columns: tool_name, version, installation_method, source_url)
  • Tool count validation report (enumerated vs. advertised count)
  • Installation method summary (e.g., '42 tools via apt, 30 via pip, 17 from source')
  • Missing or incomplete tool entries (if any)

How to apply

Clone or access the target repository and parse all installation scripts, package dependency files (e.g., package manager manifests, shell scripts), and documented version information to extract tool identifiers, versions, installation methods, and source URLs. Compile extracted entries into a structured format (CSV, JSON, or TSTable) with consistent columns: tool name, version (or version spec), installation method (e.g., apt, pip, from-source), and source repository or URL. Cross-reference the final count against the package's advertised tool count; reconcile any discrepancies by examining changelog or version history files. Validate schema consistency and that all tools are reachable or documented in the package's supported installation environment (e.g., Ubuntu LTS versions listed in the README).

Related tools

Examples

cd /path/to/MetumpX-bin && grep -r 'apt-get install\|pip install\|wget\|git clone' MetumpX_setup_enUS | sort | uniq > tools_manifest.txt && wc -l tools_manifest.txt

Evaluation signals

  • Enumerated tool count matches or is reconciled against the advertised count (~89 tools in MetumpX v2.0, 103 in v2.1); document any delta with rationale.
  • All extracted tools have documented source URLs or installation methods that are reachable and valid.
  • Manifest schema is consistent across all rows (no missing columns, no formatting inconsistencies).
  • Version strings are parseable and consistent with the package manager or source repository conventions (e.g., semver, pinned commit hashes).
  • Installation methods are traceable to documented Ubuntu package managers or official repositories (apt, pip, GitHub releases, conda, etc.).

Limitations

  • The MetumpX README does not enumerate individual tool names; the skill output depends entirely on parsing installation scripts, which may use dynamic tool lists or external configuration not visible in the repository.
  • Tool versions may not be explicitly pinned in installation scripts, making version tracking incomplete.
  • The changelog notes that tool counts changed between versions (50 in v1.0, 89 in v2.0, 103 in v2.1), but no detailed migration or removal log is provided, limiting validation of consistency across versions.
  • Windows support is mentioned as virtualization-based (per User Guide), so enumeration may not be complete or consistent across operating systems.

Evidence

  • [readme] MetumpX is a Ubuntu based software package that facilitate easy download and installation of about 89 tools related to standard Untargeted Metabolomics Mass Spectrometry pipeline.: "MetumpX is a Ubuntu based software package that facilitate easy download and installation of about 89 tools"
  • [other] Parse the repository structure (installation scripts, dependency files, package manifests) to identify all enumerated tool names, versions, and installation sources.: "Parse the repository structure (installation scripts, dependency files, package manifests) to identify all enumerated tool names, versions, and installation sources."
  • [other] Compile the extracted tool list into a structured CSV or JSON manifest with columns for tool name, version (if specified), installation method, and source repository or URL.: "Compile the extracted tool list into a structured CSV or JSON manifest with columns for tool name, version (if specified), installation method, and source repository or URL."
  • [readme] Version 2.0: MetumpX initial release, 39 Tools added (Total 89 Tools): "Version 2.0: MetumpX initial release, 39 Tools added (Total 89 Tools)"
  • [readme] Version 2.1: 15 Tools added (Total 103 Tools): "Version 2.1: 15 Tools added (Total 103 Tools)"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.