Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Use to authenticate with Morning (GreenInvoice) and create/manage clients, items, and accounting documents (invoice/receipt/quote/order/credit).
Use to authenticate with Morning (GreenInvoice) and create/manage clients, items, and accounting documents (invoice/receipt/quote/order/credit).
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Use this skill when you need to interact with Morning / GreenInvoice to: Get an auth token (JWT) using API key credentials Create/update clients Create/update items Create documents (invoice / receipt / quote / order / credit / debit) Retrieve document outputs (e.g., IDs / links) if the tool supports it
Collect only whatβs required for the action:
apiKeyId apiKeySecret
name Optional: taxId, email, phone, address, city, country
name price Optional: description, currency
documentType (Invoice / Receipt / Quote / Order / CreditInvoice / DebitInvoice) clientId (or enough info to create the client) lines[] (each line: description or itemId, quantity, unitPrice) Optional: currency, language, description, discount
Use the morning tool with an action field.
getToken createClient createItem createDocument (Optional, if implemented in your tool): findClient, findItem, getDocument, listDocuments
Never log or echo apiKeySecret or JWTs back to the user. Prefer reusing existing clientId / itemId when available. Validate document lines: quantity > 0 unitPrice >= 0 Currency: default to "ILS" unless the user specifies otherwise. Language: default to "Hebrew" unless the user specifies otherwise.
{ "action": "getToken", "apiKeyId": "YOUR_API_KEY_ID", "apiKeySecret": "YOUR_API_KEY_SECRET" }
{ "action": "createClient", "jwt": "JWT_FROM_getToken", "client": { "name": "Acme Ltd", "taxId": "515555555", "email": "billing@acme.com", "phone": "+972-50-000-0000", "address": "1 Rothschild Blvd", "city": "Tel Aviv", "country": "Israel" } }
{ "action": "createItem", "jwt": "JWT_FROM_getToken", "item": { "name": "Consulting hour", "description": "Senior engineering consulting", "price": 500, "currency": "ILS" } }
{ "action": "createDocument", "jwt": "JWT_FROM_getToken", "document": { "documentType": "Invoice", "language": "English", "currency": "ILS", "clientId": "CLIENT_ID", "description": "Invoice for January services", "lines": [ { "description": "Consulting hour", "quantity": 10, "unitPrice": 500 } ] } }
{ "action": "createDocument", "jwt": "JWT_FROM_getToken", "document": { "documentType": "Receipt", "language": "Hebrew", "currency": "ILS", "clientId": "CLIENT_ID", "lines": [ { "itemId": "ITEM_ID", "quantity": 1, "unitPrice": 1200 } ] } }
If token is rejected (401/403): call getToken again and retry the request once. If client/item already exists: Prefer returning the existing ID (if tool supports lookup), Otherwise surface a clear message: βClient already exists; provide clientId or unique identifier.β If validation fails: ask for the missing/invalid fields only (e.g., βquantity must be > 0β).
Return minimally: Created resource IDs (clientId, itemId, documentId) Any relevant URLs (PDF / view links) if the API/tool provides them
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.