원클릭으로
create-invoice
Generate and send invoices through the Invoice Ninja API. Triggers on invoice creation, billing, generating a quote/devis.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate and send invoices through the Invoice Ninja API. Triggers on invoice creation, billing, generating a quote/devis.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Methodology for designing, refactoring, and evaluating AI agents — when to use a tool vs a skill vs a subagent, how to keep system prompts lean, and how to improve agents through eval-driven hill climbing. Use this skill whenever the user is building a new agent, refactoring or debugging an existing one, complains that an agent "got worse" or "is inconsistent", asks about system prompt length, tool design, multi-agent/subagent architecture, or wants to create evals for an LLM app — even if they don't use the word "agent" (e.g., "my Claude workflow keeps messing up", "should I add another tool?", "how do I test my prompt changes?").
Run an adversarial review→fix loop on a GitHub PR using BMAD adversarial agents until the reviewers find nothing actionable, then stop and report. Never auto-merges. Use after opening a PR, or when the user says "adversarially review", "hammer this PR", "review until clean", or /adversarial-pr-review.
Write professional emails with proper context gathering before drafting. Triggers on email writing, reply drafting, cold outreach.
Resolve git merge conflicts in an Obsidian vault that's synced via git (e.g. across multiple devices, or with iCloud/Drive on top). Defaults to keeping the most recent block in daily notes.
Brand guidelines, voice, and design system for Clip2Earn — EMEA creator program infrastructure (sub-brand of Bakchich). Use when creating ANY content or UI for Clip2Earn — pitch decks, presentations, blog posts, ad copy, social captions, video scripts, creative briefs, landing pages, email campaigns, web app screens, or component code. Covers both audiences (creators + brands/SaaS founders), two distinct voice calibrations, the full HeroUI-based color system, Chakra Petch/Inter/Fira Code typography, shadows, radii, and iconography. Trigger this skill whenever the user mentions Clip2Earn, clip2earn.money, or asks to write content / build UI for an underground UGC marketplace OR a B2B creator-program infrastructure pitch.
Use when setting up or optimizing a repo for Claude Code — slim CLAUDE.md, scoped rules, RTK install, model routing, token reduction
| name | create-invoice |
| description | Generate and send invoices through the Invoice Ninja API. Triggers on invoice creation, billing, generating a quote/devis. |
Generate and send invoices through the Invoice Ninja API.
invoiceninja.comGather info from user:
Look up client: GET /api/v1/clients?filter=<name> with X-API-TOKEN header
Create invoice: POST /api/v1/invoices
{
"client_id": "<id>",
"line_items": [
{"product_key": "consulting", "notes": "Q1 advisory", "quantity": 1, "cost": 100}
],
"due_date": "YYYY-MM-DD"
}
Verify response — check status code is 200. On 500: retry once, then surface the error.
Download PDF if needed: GET /api/v1/invoices/<id>/download
Upload to a shared drive if the user has a folder convention (e.g. company shared Drive /Invoices/<year>/)