agentsclimarketplace

Url skill

Skill joeynyc/skillscore/tests/fixtures/url-skill

Integrates with various REST APIs using different URL patterns and endpoints when data fetching or authentication is needed.From its SKILL.md

Install
npx -y skills add joeynyc/skillscore --skill url-skill

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

3 things to look at

  • 16 stars16 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.
  • runs commandsInstructs the agent to run 4 commands, including `curl -X POST https://auth.example.com/oauth/token -d "grant_type=client_credentials"` and 3 more.
  • fetches URLsInstructs the agent to fetch 3 URLs, including https://auth.example.com/oauth/token and 2 more.

SKILL.md

1.3 KB, 269 tokens by cl100k_base, as published. Nobody here has run it

API Integration Skill

This skill demonstrates URL handling without false positives for path detection.

Description

Integrates with various APIs using different URL patterns and paths.

When NOT to Use

  • Don't use this for local file operations
  • Not for database queries

API Endpoints

Usage

# Authenticate first
curl -X POST https://auth.example.com/oauth/token \
  -d "grant_type=client_credentials"

# Fetch data
curl https://data.example.com/api/v2/fetch?query=test

# Upload file
curl -F "[email protected]" https://files.example.com/upload

Dependencies

  • curl for HTTP requests (curl --version to verify)
  • Standard Unix tools

Notes

All URLs use HTTPS and follow RESTful patterns. No hardcoded filesystem paths are used.

What ships with it

Read from the repository

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

Keep looking

Skills are one crate of 325,949. 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.