技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 138 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aiwithabidi/usaspending
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and instructions are coherent with its stated purpose (a USAspending.gov CLI) and do not request credentials or perform unexpected network exfiltration.
目的
Name/description match the included CLI which calls the USAspending API. The script uses only Python stdlib and issues HTTP requests to api.usaspending.gov, which is consistent with a federal spending data client.
说明范围
SKILL.md simply instructs running the bundled Python CLI against USAspending endpoints. It does not ask the agent to read unrelated files, access other services, or transmit data to unexpected endpoints.
安装机制
No install spec or external downloads are used; the skill is instruction-only with a single included Python script (stdlib-only), so nothing arbitrary is pulled from the network during install.
证书
The skill declares no required environment variables and the CLI operates without credentials. The code contains a get_env() helper that will read a .env file in a workspace path if used, but that helper is not invoked anywhere in the script — this is unexpected but not exploitable in the current code.
持久
The skill is user-invocable and not set to always:true. It does not modify other skills or request persistent system privileges.
综合结论
This skill appears to be a straightforward CLI wrapper for the USAspending API and does not request credentials. Before installing, you may want to: 1) confirm the author/homepage (agxntsix.ai) if provenance matters, 2) run the script in a sandbox or isolated environment the first time, and 3) review the bundled script (already done) if you have stricter requirements — note the unused get_env helper that would read a .env file if later invoked…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Usaspending」。简介:USAspending.gov — federal spending data, contracts, grants, awards, agencies, a…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/usaspending/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: usaspending
description: "USAspending.gov — federal spending data, contracts, grants, awards, agencies, and recipient search. No API key required."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🏛️", "requires": {}, "primaryEnv": "", "homepage": "https://www.agxntsix.ai"}}
---
# 🏛️ USAspending
USAspending.gov — federal spending data, contracts, grants, awards, agencies, and recipient search. No API key required.
## Requirements
No API key required for basic usage.
## Quick Start
```bash
# Search federal awards
python3 {{baseDir}}/scripts/usaspending.py search-awards --keywords <value> --award-type "contracts" --limit "25" --page "1"
# Get award details
python3 {{baseDir}}/scripts/usaspending.py get-award <id>
# Search recipients
python3 {{baseDir}}/scripts/usaspending.py search-recipients --keyword <value> --limit "25"
# Get recipient details
python3 {{baseDir}}/scripts/usaspending.py get-recipient <id>
# List top-tier agencies
python3 {{baseDir}}/scripts/usaspending.py list-agencies
# Get agency details
python3 {{baseDir}}/scripts/usaspending.py get-agency --code <value>
# Spending by category
python3 {{baseDir}}/scripts/usaspending.py spending-by-category --category "awarding_agency" --filters "JSON"
# Spending over time
python3 {{baseDir}}/scripts/usaspending.py spending-over-time --group "fiscal_year" --filters "JSON"
# List CFDA programs
python3 {{baseDir}}/scripts/usaspending.py list-cfda
# Autocomplete search
python3 {{baseDir}}/scripts/usaspending.py autocomplete --search-text <value>
```
## Output Format
All commands output JSON by default.
## Script Reference
| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/usaspending.py` | Main CLI — all commands in one tool |
## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.
📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)