fakturownia-clients

Manage Fakturownia client records via CLI CRUD operations.

Updated Apr 14, 2026
One-click install
npx skills add https://github.com/sixers/fakturownia-cli --skill fakturownia-clients
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fakturownia-clients
Source: https://github.com/sixers/fakturownia-cli/tree/main/skills/fakturownia/subskills/clients
Command: npx skills add https://github.com/sixers/fakturownia-cli --skill fakturownia-clients

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provides a deterministic, CLI-driven workflow for listing, inspecting, creating, updating, and deleting client records in Fakturownia, avoiding manual API fiddling and ad-hoc HTTP requests.

Core Features & Use Cases

  • CRUD Operations: List clients with filters, fetch by ID or external ID, create new clients, update existing clients, and delete clients.
  • Request & Output Discovery: Use schema commands to inspect request_body_schema and output. Supports inline JSON, file (@file), and stdin (-) input modes for create/update payloads.
  • Practical Scenario: Prepare a validated client payload by running schema discovery, then create or update the client using the CLI in automated scripts or interactive sessions.

Quick Start

Use the fakturownia client create command with a valid JSON payload provided via --input to add a new client to the account.

Frequently Asked Questions about fakturownia-clients

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Fakturownia clients from the command line?

The fakturownia CLI binary supports deterministic CRUD operations for client records, allowing you to list, fetch, create, update, and delete clients without manual HTTP requests.

How do I build a valid JSON payload to create a Fakturownia client?

Run the schema client create --json command to discover the required request_body_schema, then use inline JSON, file input, or stdin to provide the validated payload for creating a client.

What is the best way to locate a specific Fakturownia client via the API?

Use the CLI fetch operation to locate clients by ID or external ID, or apply filters when batch-listing clients to narrow down the results in your account-level workflows.

Do I need to configure environment variables to use the Fakturownia CLI?

Configured profile environment variables are required to authenticate the fakturownia CLI binary, ensuring secure access when executing client management operations.

Can I use a file to provide JSON input when updating Fakturownia clients?

The Fakturownia CLI supports inline JSON, file (@file), and stdin (-) input modes, giving you flexible options for passing validated request bodies during client updates.

How do I discover the output schema for Fakturownia client operations?

Run schema discovery commands such as schema client update --json to inspect both the request_body_schema and the output structure before executing your client management tasks.