hugging-face-tool-builder
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: hugging-face-tool-builder description: Use this skill when the user wants to build tool/scripts or achieve a task where using data from the Hugging Face API would help. This is especially useful when chaining or combining API calls or the task will be repeated/automated.
Malicious tool definition detected
Tool: references/baseline_hf_api.py Description: #!/usr/bin/env python3 """ Ultra-simple Hugging Face API example (Python).
Malicious tool definition detected
Tool: references/baseline_hf_api.sh Description: #!/usr/bin/env bash set -euo pipefail show_help() { cat << EOF Ultra-simple Hugging Face API example (Shell) Usage: $0 [limit] $0 --help Description: Fetches a small list of models from the HF API and prints raw JSON.
Malicious tool definition detected
Tool: references/baseline_hf_api.tsx Description: #!/usr/bin/env tsx /** * Ultra-simple Hugging Face API example (TSX).
Malicious tool definition detected
Tool: references/find_models_by_paper.sh Description: #!/bin/bash # Find models associated with papers on Hugging Face # Usage: ./find_models_by_paper.sh [arXiv_id|search_term] # Optional: Set HF_TOKEN environment variable for private/gated models set -e # Colors for output RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' BLUE='\033[0;34m' NC='\033[0m' # No Color # Help function show_help() { echo -e "${BLUE}Find models associated with papers on Hugging Face${NC}" echo "" echo -e "${YELLO
Malicious tool definition detected
Tool: references/hf_enrich_models.sh Description: #!/usr/bin/env bash set -euo pipefail show_help() { cat << 'USAGE' Stream model IDs on stdin, emit one JSON object per line (NDJSON).
Malicious tool definition detected
Tool: references/hf_model_card_frontmatter.sh Description: #!/usr/bin/env bash set -euo pipefail show_help() { cat << 'USAGE' Fetch Hugging Face model cards via the hf CLI and summarize frontmatter.
Malicious tool definition detected
Tool: references/hf_model_papers_auth.sh Description: #!/usr/bin/env bash # Hugging Face Model Papers Tool with Authentication # Fetches papers referenced by Hugging Face models using HF_TOKEN if available set -euo pipefail # Help function show_help() { cat << EOF Hugging Face Model Papers Tool with Authentication This tool fetches papers referenced by Hugging Face models.