wogiflow 1.1.0 → 1.1.1
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.
|
@@ -48,7 +48,6 @@ This analyzes your codebase and populates:
|
|
|
48
48
|
| [Onboarding](./onboarding-existing.md) | Analyze and configure existing projects |
|
|
49
49
|
| [Component Indexing](./component-indexing.md) | Auto-scan and register components |
|
|
50
50
|
| [Framework Detection](./framework-detection.md) | Auto-detect tech stack and suggest skills |
|
|
51
|
-
| [Team Setup](./team-setup.md) | Configure team sync and shared knowledge |
|
|
52
51
|
|
|
53
52
|
---
|
|
54
53
|
|
|
@@ -42,7 +42,7 @@ npx flow onboard
|
|
|
42
42
|
Unlike feature-by-feature documentation, this knowledge base is organized by **purpose** - what you're trying to accomplish:
|
|
43
43
|
|
|
44
44
|
### 1. Setting Up (Once per project)
|
|
45
|
-
Everything in [01-setup-onboarding](./01-setup-onboarding/) helps you get WogiFlow configured for your project. This includes analyzing your codebase
|
|
45
|
+
Everything in [01-setup-onboarding](./01-setup-onboarding/) helps you get WogiFlow configured for your project. This includes analyzing your codebase and populating decisions and component registries.
|
|
46
46
|
|
|
47
47
|
### 2. Executing Tasks (Daily workflow)
|
|
48
48
|
The [02-task-execution](./02-task-execution/) category is the heart of WogiFlow. It explains the entire execution pipeline from task selection through completion, including:
|
|
@@ -133,25 +133,6 @@ cat .workflow/config.json
|
|
|
133
133
|
}
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
-
### Team-Optimized
|
|
137
|
-
|
|
138
|
-
```json
|
|
139
|
-
{
|
|
140
|
-
"team": {
|
|
141
|
-
"enabled": true,
|
|
142
|
-
"sync": {
|
|
143
|
-
"decisions": true,
|
|
144
|
-
"skills": true,
|
|
145
|
-
"componentIndex": true
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
"knowledgeRouting": {
|
|
149
|
-
"autoDetect": true,
|
|
150
|
-
"modelSpecificLearning": true
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
```
|
|
154
|
-
|
|
155
136
|
### Cost-Optimized (Hybrid Mode)
|
|
156
137
|
|
|
157
138
|
```json
|
|
@@ -225,4 +206,3 @@ See [all-options.md](./all-options.md) for complete configuration reference with
|
|
|
225
206
|
|
|
226
207
|
- [All Options](./all-options.md) - Complete reference
|
|
227
208
|
- [Task Execution](../02-task-execution/) - Execution config details
|
|
228
|
-
- [Team Setup](../01-setup-onboarding/team-setup.md) - Team config
|