Skip to main content

create-product

This skill should be used when the task asks to "create a product", "opprett eit produkt", "erstellen Sie das Produkt", "créez le produit", "crie o produto", "crear un producto", or involves creating a product entity in Tripletex.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
JardarIversen/ainm-2026
آخر نشاط في المصدر
٢١ مارس ٢٠٢٦ في ١١:٣٠
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
١٨
التفرعات
١٤

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
create_product
tier
1
task
T03
description
This skill should be used when the task asks to "create a product", "opprett eit produkt", "erstellen Sie das Produkt", "créez le produit", "crie o produto", "crear un producto", or involves creating a product entity in Tripletex.
# Create Product Create a product in Tripletex. One API call. ## Execution Steps 1. **Create product** — `POST /product` ```json POST /product { "name": "Cloud-Speicher", "number": "9235", "priceExcludingVatCurrency": 28800.0, "vatType": {"id": 3} } ``` **Required fields:** - `name` (string) — product name from the prompt **Common optional fields:** - `number` (string) — product number if given in the prompt - `priceExcludingVatCurrency` (number) — price excl. VAT - `vatType` (object with `id`) — see VAT types below ## VAT Types Common VAT type IDs in Tripletex: - `{"id": 3}` — standard rate 25% (Norwegian MVA) - `{"id": 6}` — zero/exempt rate 0% If the prompt mentions "25%" or "standardsats" or "standard rate", use `{"id": 3}`. If the prompt mentions "0%" or "fritatt" or "exempt", use `{"id": 6}`. If no VAT is mentioned, omit the field (Tripletex uses a default). ## Nynorsk Example Task: "Opprett produktet 'Skylagring' med produktnummer 4521. Prisen er 15000 NOK utan MVA, med standardsats på 25 %." Steps: 1. `POST /product` with name "Skylagring", number "4521", priceExcludingVatCurrency 15000.0, vatType {"id": 3} Result: 1 API call, 0 errors. ## Quirks - Price in the prompt is usually "excl. VAT" / "ohne MwSt." / "sem IVA" / "utan MVA" — use `priceExcludingVatCurrency`. - Product number is a string, not an integer.
عرض على GitHub