dydo 1.0.6 → 1.0.7
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/README.md +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ Context management and agent orchestration for AI coding assistants.
|
|
|
6
6
|
|
|
7
7
|
## The Problem
|
|
8
8
|
|
|
9
|
+
**Is your project too large for LLMs to understand? Then this is for you.**
|
|
10
|
+
|
|
9
11
|
AI code editors forget everything between sessions. Every time you start, the agent wakes up with amnesia — no memory of your architecture, your conventions, or the context from yesterday.
|
|
10
12
|
|
|
11
13
|
So you explain the same things. Again. And again.
|
|
@@ -32,6 +34,7 @@ You maintain your project's intent, architecture, and conventions in structured
|
|
|
32
34
|
- **Multi-agent workflows** — Run parallel agents on different tasks
|
|
33
35
|
- **Team support** — Each team member gets their own pool of agents
|
|
34
36
|
- **Platform-agnostic** — Works across AI tools (Claude, Cursor, etc.) and operating systems
|
|
37
|
+
- **Your process, your rules** — Modify templates, roles, and workflows to match how you work
|
|
35
38
|
- **Useful history** — Need fixing a bug caused by a change three days ago?
|
|
36
39
|
- No problem, the agent will have a record of each finished task and the files touched.
|
|
37
40
|
|
|
@@ -182,7 +185,7 @@ project/
|
|
|
182
185
|
├── project/ # Decisions, pitfalls, changelog
|
|
183
186
|
│ ├── _index.md # Hub file (auto-generated)
|
|
184
187
|
│ ├── tasks/ # Task tracking
|
|
185
|
-
│ ├── decisions/ #
|
|
188
|
+
│ ├── decisions/ # Decision records
|
|
186
189
|
│ ├── changelog/ # Change history
|
|
187
190
|
│ └── pitfalls/ # Known issues
|
|
188
191
|
│
|