技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 1 · 155 · 1 current installs · 1 all-time installs
⭐ 1
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aiwithabidi/wave
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
The skill's code and runtime instructions are coherent with a Wave accounting CLI: it only needs a Wave API token, talks to Wave's GraphQL endpoint, and does not install external artifacts or request unrelated credentials.
目的
Name/description (Wave accounting CLI) match the code and SKILL.md. The script uses WAVE_API_TOKEN to call Wave's GraphQL API (https://gql.waveapps.com/graphql/public) and implements invoice, customer, transactions, accounts, products, and taxes operations — all consistent with the stated purpose.
说明范围
SKILL.md instructs running the bundled Python script and declares only WAVE_API_TOKEN. The script's runtime behavior stays within that scope: it only reads the token, constructs GraphQL queries/mutations, and sends them to the Wave API. There are no instructions to read or transmit unrelated system data.
安装机制
No external install/download steps. The skill is instruction + a single Python stdlib-only script included in the bundle, so nothing is fetched from external URLs or written to surprising locations during install.
证书
The only declared credential is WAVE_API_TOKEN, which is appropriate. The script will also look for a .env file under WORKSPACE or ~/.openclaw/workspace to source WAVE_API_TOKEN if not in the environment; it only parses that file for a WAVE_API_TOKEN= line. This is reasonable but means the script accesses a workspace .env file if present — review that file for other secrets and ensure the token has least privilege.
持久
always is false and the skill does not modify other skills or system-wide settings. It does not request permanent agent presence beyond normal (autonomous invocation is allowed by default but not elevated by this skill).
综合结论
This skill appears to do what it says: it needs only a Wave API token and calls Wave's public GraphQL endpoint to manage invoices, customers, transactions, etc. Before installing: (1) confirm you trust the skill author (homepage is agxntsix.ai, not an official Wave domain), (2) store a token with minimal permissions and avoid using a highly-privileged account, (3) check your ~./openclaw/workspace/.env or WORKSPACE .env for other secrets (the s…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Wave」。简介:Wave accounting — invoices, customers, transactions, accounts, products, taxes.…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/wave/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: wave
description: "Wave accounting — invoices, customers, transactions, accounts, products, taxes. Small business accounting CLI."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "🌊", "requires": {"env": ["WAVE_API_TOKEN"]}, "primaryEnv": "WAVE_API_TOKEN", "homepage": "https://www.agxntsix.ai"}}
---
# 🌊 Wave
Invoicing and accounting for small business — invoices, customers, transactions.
## Features
- **Businesses** — list connected businesses
- **Invoices** — create, send, list, delete
- **Customers** — manage customer records
- **Accounts** — chart of accounts
- **Transactions** — view financial transactions
- **Products & taxes** — manage items and tax rates
## Requirements
| Variable | Required | Description |
|----------|----------|-------------|
| `WAVE_API_TOKEN` | ✅ | API key/token for Wave |
## Quick Start
```bash
python3 {baseDir}/scripts/wave.py businesses
python3 {baseDir}/scripts/wave.py invoices <business-id>
python3 {baseDir}/scripts/wave.py invoice-create <business-id> <customer-id> --amount 500
python3 {baseDir}/scripts/wave.py customers <business-id>
python3 {baseDir}/scripts/wave.py transactions <business-id>
```
## 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)