appiq-solution 1.0.3 โ 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tools/appiq-installer.js +2196 -207
- package/README.md +0 -162
- package/appiq-installer.js +0 -2546
- package/appiq-solution/README.md +0 -162
package/README.md
DELETED
@@ -1,162 +0,0 @@
|
|
1
|
-
# ๐ Appiq Solution - Super Einfache KI-Agent Installation
|
2
|
-
|
3
|
-
*Built with โค๏ธ based on the amazing Bmad-Method*
|
4
|
-
|
5
|
-
## โก One-Command Installation
|
6
|
-
|
7
|
-
```bash
|
8
|
-
npx appiq-solution install
|
9
|
-
```
|
10
|
-
|
11
|
-
**Das war's!** ๐ฏ Kein komplizierter Setup mehr.
|
12
|
-
|
13
|
-
## ๐ฎ Was passiert automatisch?
|
14
|
-
|
15
|
-
### 1. **๐ Intelligente Projekt-Erkennung**
|
16
|
-
- โ
**Automatisch erkennt:** Greenfield vs. Brownfield
|
17
|
-
- โ
**Analysiert:** Bestehenden Code, Dokumentation, Tech-Stack
|
18
|
-
- โ
**Empfiehlt:** Optimalen Workflow fรผr Ihr Projekt
|
19
|
-
|
20
|
-
### 2. **๐ ๏ธ IDE-Integration (One-Click)**
|
21
|
-
- โ
**Cursor** โ `.cursor/rules/` mit `.mdc` Dateien
|
22
|
-
- โ
**Claude Code** โ `.claude/commands/Appiq/` mit `.md` Dateien
|
23
|
-
- โ
**Windsurf** โ `.windsurf/rules/` mit `.md` Dateien
|
24
|
-
- โ
**VS Code + Cline** โ `.clinerules/` mit `.md` Dateien
|
25
|
-
|
26
|
-
### 3. **๐ Automatische Datei-Organisation**
|
27
|
-
|
28
|
-
**Neue Projekte (Greenfield):**
|
29
|
-
```
|
30
|
-
your-project/
|
31
|
-
โโโ docs/
|
32
|
-
โ โโโ prd.md โ PRD wird hier erstellt
|
33
|
-
โ โโโ architecture.md โ Architektur wird hier erstellt
|
34
|
-
โ โโโ stories/ โ User Stories werden hier erstellt
|
35
|
-
โโโ appiq-solution/
|
36
|
-
โ โโโ agents/ โ Optimierte KI-Agents
|
37
|
-
โ โโโ commands/ โ One-Click Kommandos
|
38
|
-
โโโ .cursor/rules/ โ IDE-spezifische Integration
|
39
|
-
```
|
40
|
-
|
41
|
-
**Bestehende Projekte (Brownfield):**
|
42
|
-
```
|
43
|
-
your-existing-project/
|
44
|
-
โโโ docs/ โ Bestehende Docs werden gescannt
|
45
|
-
โ โโโ prd.md โ PRD falls vorhanden, sonst erstellt
|
46
|
-
โ โโโ architecture.md โ Architektur-Review
|
47
|
-
โโโ appiq-solution/ โ Neue Appiq Solution Installation
|
48
|
-
โโโ .cursor/rules/ โ IDE Integration (nicht-invasiv)
|
49
|
-
```
|
50
|
-
|
51
|
-
## ๐ Super Einfache Nutzung
|
52
|
-
|
53
|
-
### Schritt 1: Installation
|
54
|
-
```bash
|
55
|
-
npx appiq-solution install
|
56
|
-
```
|
57
|
-
|
58
|
-
### Schritt 2: Agent laden (Cursor Beispiel)
|
59
|
-
```bash
|
60
|
-
# Appiq Launcher ist bereits in .cursor/rules/smart-launcher.mdc
|
61
|
-
# Einfach in Cursor sagen: "Agiere als Appiq Launcher"
|
62
|
-
```
|
63
|
-
|
64
|
-
### Schritt 3: One-Command Start
|
65
|
-
```bash
|
66
|
-
# Fรผr NEUE Projekte:
|
67
|
-
/start
|
68
|
-
|
69
|
-
# Fรผr BESTEHENDE Projekte:
|
70
|
-
/analyze
|
71
|
-
```
|
72
|
-
|
73
|
-
**Das war's!** ๐ Das System fรผhrt Sie automatisch durch alles.
|
74
|
-
|
75
|
-
## ๐ฏ One-Click Workflows
|
76
|
-
|
77
|
-
### Greenfield (Neue Projekte)
|
78
|
-
```
|
79
|
-
/start โ PRD โ Architektur โ Stories โ Code โ Tests
|
80
|
-
```
|
81
|
-
|
82
|
-
### Brownfield (Bestehende Projekte)
|
83
|
-
```
|
84
|
-
/analyze โ Review โ Neue Features โ Integration โ Tests
|
85
|
-
```
|
86
|
-
|
87
|
-
## ๐ค Optimierte Agents
|
88
|
-
|
89
|
-
| Agent | Kommando | Funktion |
|
90
|
-
|-------|----------|----------|
|
91
|
-
| **Appiq Launcher** | `/start` | Intelligenter Projekt-Start |
|
92
|
-
| **Project Manager** | `/prd` | PRD & Dokumentation |
|
93
|
-
| **System Architect** | `/architecture` | Technische Architektur |
|
94
|
-
| **Story Master** | `/story` | User Stories & Sprints |
|
95
|
-
| **Senior Developer** | `/code` | Code Implementation |
|
96
|
-
| **QA Expert** | `/test` | Testing & Validierung |
|
97
|
-
|
98
|
-
## ๐ก Warum Appiq Solution?
|
99
|
-
|
100
|
-
### โ **Vorher (Kompliziert):**
|
101
|
-
- โ Komplexer Web-Client Setup
|
102
|
-
- โ Unklare Anweisungen
|
103
|
-
- โ Viele manuelle Schritte
|
104
|
-
- โ Verwirrende Datei-Organisation
|
105
|
-
|
106
|
-
### โ
**Jetzt (Super Einfach):**
|
107
|
-
- โ
**Ein Kommando:** `npx appiq-solution install`
|
108
|
-
- โ
**Automatische Erkennung:** Greenfield/Brownfield
|
109
|
-
- โ
**Klare Anweisungen:** Wo gehรถrt was hin
|
110
|
-
- โ
**One-Click Workflows:** Alles automatisiert
|
111
|
-
|
112
|
-
## ๐ Hilfe & Support
|
113
|
-
|
114
|
-
### Quick Commands
|
115
|
-
- **`/help`** - Alle verfรผgbaren Kommandos
|
116
|
-
- **`/status`** - Aktueller Projekt-Status
|
117
|
-
- **`/next`** - Nรคchster Schritt
|
118
|
-
|
119
|
-
### Troubleshooting
|
120
|
-
```bash
|
121
|
-
# Installation prรผfen
|
122
|
-
ls appiq-solution/
|
123
|
-
|
124
|
-
# Agent-Liste anzeigen
|
125
|
-
ls appiq-solution/agents/
|
126
|
-
|
127
|
-
# IDE-Integration prรผfen
|
128
|
-
ls .cursor/rules/ # fรผr Cursor
|
129
|
-
ls .claude/commands/ # fรผr Claude Code
|
130
|
-
```
|
131
|
-
|
132
|
-
## ๐ฎ Beispiel-Session
|
133
|
-
|
134
|
-
```bash
|
135
|
-
# Installation
|
136
|
-
$ npx appiq-solution install
|
137
|
-
๐ Projekt-Analyse... โ Brownfield erkannt
|
138
|
-
๐ ๏ธ IDE: Cursor ausgewรคhlt
|
139
|
-
โ
Installation abgeschlossen!
|
140
|
-
|
141
|
-
# In Cursor IDE
|
142
|
-
> "Agiere als Appiq Launcher"
|
143
|
-
> /analyze
|
144
|
-
|
145
|
-
๐ Analyzing existing project...
|
146
|
-
โ
Found: package.json (Node.js project)
|
147
|
-
โ
Found: src/ directory with React components
|
148
|
-
โ
Missing: PRD documentation
|
149
|
-
๐ Recommendation: Create PRD first, then add new features
|
150
|
-
|
151
|
-
> /prd
|
152
|
-
|
153
|
-
๐ Creating PRD for existing React project...
|
154
|
-
โ
PRD created: docs/prd.md
|
155
|
-
๐ฏ Next: /architecture to review technical setup
|
156
|
-
```
|
157
|
-
|
158
|
-
**So einfach ist das!** ๐
|
159
|
-
|
160
|
-
---
|
161
|
-
*Appiq Solution - Entwicklung war nie einfacher.*
|
162
|
-
*Built with โค๏ธ based on Bmad-Method*
|