Skip to main content

create-project

This skill should be used when the task asks to "create a project", "opprett eit prosjekt", "erstellen Sie das Projekt", "créez le projet", "crie o projeto", or involves creating a project linked to a customer with a project manager in Tripletex.

Aller à l'installation

Informations de source

Dépôt
JardarIversen/ainm-2026
Dernière activité de la source
21 mars 2026 à 11:30
Langue détectée de SKILL.md
anglais
Étoiles
18
Forks
14

Options d'installation

Le prompt qui vérifie d'abord la source est sélectionné par défaut. Vous pouvez passer à une commande directe ou télécharger une copie locale.

Vérifiez les fichiers source

Lisez SKILL.md et les fichiers associés affichés par SkillsMP avant de décider de l'installer.

Affichage de SKILL.md

SKILL.md
Instructions source · Aperçu en lecture seule
name
create_project
tier
1
task
T08
description
This skill should be used when the task asks to "create a project", "opprett eit prosjekt", "erstellen Sie das Projekt", "créez le projet", "crie o projeto", or involves creating a project linked to a customer with a project manager in Tripletex.
# Create Project Exactly 3 API calls. Customer and PM are PRE-CREATED — search, do NOT create. ## Call 1: Find Existing Customer ``` GET /customer?organizationNumber=<org_nr>&fields=id,name&count=10 ``` Do NOT create — use existing. ## Call 2: Find Project Manager ``` GET /employee?email=<email>&fields=id,firstName,lastName&count=5 ``` PM pre-exists. ## Call 3: Create Project ```json POST /project { "name": "Analyse Windkraft", "customer": {"id": <customer_id>}, "projectManager": {"id": <employee_id>}, "startDate": "2026-03-20" } ``` `startDate` is required. **Total: 3 calls, 0 errors.** ## Gotchas - Customer is PRE-CREATED — search by org number, NEVER create - Creating duplicate customer links project to wrong entity → 0 score - PM pre-exists — search by email - `startDate` is required on project
Voir sur GitHub