- Überblick
- Erste Schritte
- Konzepte
- Verwenden der UiPath CLI
- Anleitungen
- CI/CD-Rezepte
- Befehlsreferenz
- Überblick
- Exitcodes
- Globale Optionen
- UIP-codierter Agent
- uip coder
- uip context-grounding
- UIP-Dokumentation
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Add-Test-Data-Entität
- Add-Test-Data-Queue
- Add-Test-Data-Variation
- Analysieren
- Erstellen
- Ein Projekt erstellen
- Diff
- Suchaktivitäten
- Get-Analyse-Regeln
- get-standard-aktivität-xaml
- Fehler abrufen
- Manuelle-Testfälle erhalten
- Manuelle-Testschritte erhalten
- get-library-object-repository
- get-object-repository
- Get-Versionen
- Beispiel für einen Workflow abrufen
- Anwendung anzeigen
- Anzeigeelement
- Inspektionspaket
- install-data-fabric-entities
- Pakete installieren oder aktualisieren
- list-data-fabric-entities
- list-instances
- Beispiele für Listenworkflows
- Packen
- Veröffentlichen
- remote
- restore
- run, debug & execution
- Ausführungsdatei installieren
- Suchvorlagen
- Studio starten
- Ausführung anhalten
- tm
- UIA
- uip tasks
- UIP-Ablaufverfolgungen
- uip traces feedback
- Migration
- Referenz und Support
Syntax and options for `uip solution init`, which scaffolds an empty UiPath solution directory with a `.uipx` manifest.
uip solution init scaffolds an empty UiPath solution on disk. It creates a directory named after the solution, writes a .uipx manifest with an empty Projects array, and writes AGENTS.md and CLAUDE.md briefing files that orient AI coding agents to the solution — ready to receive projects via uip solution projects add or uip solution projects import.
Zusammenfassung
uip solution init <solutionName>
uip solution init <solutionName>
Der Befehl berücksichtigt die globalen Optionen und gibt die Standardaustrittscodes zurück.
Argumente
<solutionName>(required) — Name or path for the new solution. A directory is created at this location; the.uipxfile inside it takes the same base name.
Optionen
Keine über die globalen Optionen hinaus.
Beispiele
Minimal
uip solution init my-solution
uip solution init my-solution
Creates ./my-solution/my-solution.uipx, plus ./my-solution/AGENTS.md and ./my-solution/CLAUDE.md.
Skripting – Erfassen Sie den generierten Pfad
uip solution init my-solution --output-filter "Data.Path"
uip solution init my-solution --output-filter "Data.Path"
In Kombination mit --output json wird eine einzelne JSON-Zeichenfolge mit dem absoluten Pfad zum neuen .uipx ausgegeben, die für die Pipeline in Folgebefehle geeignet ist.
Datenform (--output json)
{
"Code": "SolutionInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-solution/my-solution.uipx",
"NextSteps": "Read /workspace/my-solution/AGENTS.md or /workspace/my-solution/CLAUDE.md to understand the solution lifecycle, project types that can be used inside a solution, and related uip command references."
}
}
{
"Code": "SolutionInit",
"Data": {
"Status": "Created successfully",
"Path": "/workspace/my-solution/my-solution.uipx",
"NextSteps": "Read /workspace/my-solution/AGENTS.md or /workspace/my-solution/CLAUDE.md to understand the solution lifecycle, project types that can be used inside a solution, and related uip command references."
}
}
NextSteps points at whichever briefing file the invoking agent (or a human) should read next — it's the same content in both files, written for different coding-agent conventions.
Zugehörige Befehle
uip solution projects add– registrieren Sie einen vorhandenen Projektunterordner in der neuen Lösung.uip solution projects import– kopieren Sie einen externen Projektordner in die neue Lösung.uip solution pack– Sobald Projekte hinzugefügt wurden, erstellen Sie ein.zipfür die Bereitstellung.
Siehe auch
- Ihre erste Pipeline – durchläuft
init→projects add→pack→publish→deploy run. uip solutionÜbersicht – Verb-Taxonomie und End-to-End-Flow.