技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 195 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:aiwithabidi/greenhouse
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill largely matches its stated purpose (Greenhouse Harvest API access) but includes a few implementation oddities (reading a workspace .env file not declared in SKILL.md and a minor suspicious coding artifact) that warrant review before installation.
目的
Name, description, and requested credential (GREENHOUSE_API_KEY) match: the tool is a CLI for the Greenhouse Harvest API and requires the Harvest API key (primaryEnv = GREENHOUSE_API_KEY), which is proportionate to the stated purpose.
说明范围
SKILL.md instructs the agent to run the included CLI script and only lists GREENHOUSE_API_KEY. The script additionally reads an optional .env file from WORKSPACE or ~/.openclaw/workspace/.env to source environment variables. That filesystem access and implicit config-file lookup is not documented in SKILL.md and expands the agent's scope of reading user files beyond what the README declares.
安装机制
No install spec (instruction-only with an included script). Nothing is downloaded or written by an installer; risk from install mechanism is low.
证书
Only GREENHOUSE_API_KEY is declared and used as the credential. The script also respects a WORKSPACE env var to find a .env file, but it does not request or require additional secret env vars. This is mostly proportional, but reading the .env file can expose unrelated secrets if present.
持久
Skill is not always-enabled and does not request persistent agent privileges. It does not modify other skills or agent configuration per the provided files.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Greenhouse」。简介:Greenhouse ATS — manage candidates, jobs, applications, offers, and interviews …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/greenhouse/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: greenhouse
description: "Greenhouse ATS — manage candidates, jobs, applications, offers, and interviews via Harvest API"
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🌱", "requires": {"env": ["GREENHOUSE_API_KEY"]}, "primaryEnv": "GREENHOUSE_API_KEY", "homepage": "https://www.agxntsix.ai"}}
---
# 🌱 Greenhouse
Greenhouse ATS — manage candidates, jobs, applications, offers, and interviews via Harvest API
## Requirements
| Variable | Required | Description |
|----------|----------|-------------|
| `GREENHOUSE_API_KEY` | ✅ | Harvest API key |
## Quick Start
```bash
# List candidates
python3 {{baseDir}}/scripts/greenhouse.py candidates --per_page <value> --job_id <value>
# Get candidate
python3 {{baseDir}}/scripts/greenhouse.py candidate-get id <value>
# Create candidate
python3 {{baseDir}}/scripts/greenhouse.py candidate-create --first_name <value> --last_name <value> --email_addresses <value>
# List applications
python3 {{baseDir}}/scripts/greenhouse.py applications --status <value> --job_id <value>
# Get application
python3 {{baseDir}}/scripts/greenhouse.py application-get id <value>
# Advance application
python3 {{baseDir}}/scripts/greenhouse.py application-advance id <value>
# Reject application
python3 {{baseDir}}/scripts/greenhouse.py application-reject id <value> --rejection_reason_id <value>
# List jobs
python3 {{baseDir}}/scripts/greenhouse.py jobs --status <value>
```
## All Commands
| Command | Description |
|---------|-------------|
| `candidates` | List candidates |
| `candidate-get` | Get candidate |
| `candidate-create` | Create candidate |
| `applications` | List applications |
| `application-get` | Get application |
| `application-advance` | Advance application |
| `application-reject` | Reject application |
| `jobs` | List jobs |
| `job-get` | Get job |
| `job-stages` | List job stages |
| `offers` | List offers |
| `interviews` | List interviews |
| `scorecards` | List scorecards |
| `departments` | List departments |
| `offices` | List offices |
| `users` | List users |
| `sources` | List sources |
## Output Format
All commands output JSON by default. Add `--human` for readable formatted output.
```bash
python3 {{baseDir}}/scripts/greenhouse.py <command> --human
```
## Script Reference
| Script | Description |
|--------|-------------|
| `{{baseDir}}/scripts/greenhouse.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)