Case 04088
A fast, offline static risk analysis CLI for AI agent skill files. Detects malicious instructions, steganographic payloads, and dangerous capability chains.
npx -y skills add knownasnaffy/prompthound --skill case_04088Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 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 author says it does
Copied from the file, not written here
Search, retrieve, and analyze academic papers from arXiv. Use when: (1) searching for specific research papers, (2) retrieving paper details and abstracts, (3) downloading paper PDFs, (4) analyzing research trends, or (5) getting paper metadata.
SKILL.md
3.7 KB, as published. Nobody here has run it
Arxiv Skill
Overview
This skill enables searching and retrieving academic papers from the arXiv preprint server. It provides functionality to search for papers by keywords, authors, or categories, retrieve paper details and abstracts, download PDF files, and analyze research trends.
Quick Start
Searching for Papers
To search for papers on arXiv, use the search_papers script with relevant keywords:
python scripts/search_papers.py --query "machine learning" --max-results 10
Retrieving Paper Details
To get detailed information about a specific paper:
python scripts/get_paper_details.py --id 2301.00001
Downloading Papers
To download a paper's PDF:
python scripts/download_paper.py --id 2301.00001 --output paper.pdf
Core Functions
Search Papers
Searches arXiv for papers matching specified criteria. Supports keyword search, author search, and category filtering.
Parameters:
--query: Search query (required)--max-results: Maximum number of results to return (default: 10)--category: Filter by arXiv category (e.g., cs.AI, stat.ML)--sort-by: Sort results by relevance, lastUpdatedDate, or submittedDate--start: Start index for paginated results
Example:
python scripts/search_papers.py --query "transformer architecture" --category cs.CL --max-results 5
Get Paper Details
Retrieves detailed information about a specific paper, including title, authors, abstract, categories, and links.
Parameters:
--id: arXiv paper ID (required, e.g., 2301.00001)
Example:
python scripts/get_paper_details.py --id 2301.00001
Download Paper
Downloads the PDF of a specific paper.
Parameters:
--id: arXiv paper ID (required)--output: Output file path (default: paper.pdf)
Example:
python scripts/download_paper.py --id 2301.00001 --output transformer-paper.pdf
Workflows
Research Literature Review
- Search for papers on a topic
- Retrieve details for relevant papers
- Download PDFs for in-depth analysis
- Summarize key findings
Example Workflow:
# Search for recent papers on large language models
python scripts/search_papers.py --query "large language models" --max-results 10 --sort-by lastUpdatedDate
# Get details for a promising paper
python scripts/get_paper_details.py --id 2301.00001
# Download the PDF
python scripts/download_paper.py --id 2301.00001 --output llm-paper.pdf
Trend Analysis
- Search for papers in a specific category over time
- Analyze publication trends
- Identify emerging research areas
Example Workflow:
# Search for papers in machine learning category
python scripts/search_papers.py --query "" --category cs.LG --max-results 100 --sort-by submittedDate
Resources
scripts/
search_papers.py: Search arXiv for papersget_paper_details.py: Get detailed information about a paperdownload_paper.py: Download paper PDFsanalyze_trends.py: Analyze research trends based on arXiv data
references/
api_reference.md: arXiv API documentation and usage examplescategories.md: List of arXiv categories and their descriptions
assets/
templates/: Templates for generating research summaries
API Reference
For detailed information about the arXiv API, see references/api_reference.md.