openfleet 0.3.15 → 0.4.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.
- package/README.md +52 -2
- package/dist/agents/{reviewer.d.ts → architect.d.ts} +1 -1
- package/dist/agents/{planner.d.ts → builder.d.ts} +1 -1
- package/dist/agents/index.d.ts +6 -8
- package/dist/agents/{housekeeping.d.ts → introspector.d.ts} +1 -1
- package/dist/agents/names.d.ts +6 -8
- package/dist/agents/{actor.d.ts → recon.d.ts} +1 -1
- package/dist/agents/{reflector.d.ts → validator.d.ts} +1 -1
- package/dist/config.d.ts +14 -13
- package/dist/index.js +446 -873
- package/dist/models.d.ts +3 -3
- package/dist/templates/.openfleet/.templates/task-tree.md +3 -3
- package/dist/templates/.openfleet/README.md +28 -25
- package/dist/templates/.openfleet/VERSION +1 -0
- package/dist/templates/.openfleet/gitignore.template +2 -7
- package/dist/templates/.openfleet/migrations/0.4.0.md +74 -0
- package/dist/templates/.openfleet/{agents/Apollo.md → private/agents/Architect.md} +2 -2
- package/dist/templates/.openfleet/{agents/Hercules.md → private/agents/Builder.md} +2 -2
- package/dist/templates/.openfleet/{agents/Mnemosyne.md → private/agents/Introspector.md} +2 -40
- package/dist/templates/.openfleet/{agents/Athena.md → private/agents/Recon.md} +2 -2
- package/dist/templates/.openfleet/{agents/Chiron.md → private/agents/Validator.md} +2 -2
- package/dist/templates/.openfleet/{experience → private/experience}/README.md +1 -2
- package/dist/templates/.openfleet/private/preferences.md +113 -0
- package/dist/templates/.openfleet/public/standards/code-style.md +11 -0
- package/dist/transcript/hooks.d.ts +0 -13
- package/dist/utils/directory-init.d.ts +1 -0
- package/package.json +1 -1
- package/dist/agents/read-only.d.ts +0 -2
- package/dist/agents/scout.d.ts +0 -2
- package/dist/templates/.openfleet/experience/blunders/README.md +0 -6
- package/dist/templates/.openfleet/reviews/README.md +0 -15
- package/dist/templates/.openfleet/sessions/README.md +0 -16
- package/dist/templates/.openfleet/standards/code-style.md +0 -3
- package/dist/tools/save-conversation/counter.d.ts +0 -31
- package/dist/tools/save-conversation/session-writer.d.ts +0 -17
- package/dist/tools/save-conversation/slug-generator.d.ts +0 -14
- package/dist/tools/save-conversation/types.d.ts +0 -28
- /package/dist/templates/.openfleet/{agents → private/agents}/Zeus.md +0 -0
- /package/dist/templates/.openfleet/{experience → private/experience}/lessons/README.md +0 -0
- /package/dist/templates/.openfleet/{experience → private/experience}/runbooks/README.md +0 -0
- /package/dist/templates/.openfleet/{status.md → private/status.md} +0 -0
- /package/dist/templates/.openfleet/{stories → private/stories}/README.md +0 -0
- /package/dist/templates/.openfleet/{transcripts → private/transcripts}/README.md +0 -0
- /package/dist/templates/.openfleet/{docs → public/docs}/README.md +0 -0
- /package/dist/templates/.openfleet/{standards → public/standards}/README.md +0 -0
- /package/dist/templates/.openfleet/{standards → public/standards}/architecture.md +0 -0
- /package/dist/templates/.openfleet/{standards → public/standards}/review-checklist.md +0 -0
- /package/dist/templates/.openfleet/{standards → public/standards}/testing.md +0 -0
- /package/dist/templates/.openfleet/{experience → public}/troubleshooting/README.md +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# Openfleet
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Ultra lightweight plugin for persistent memory with subagent orchestration.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
0 dependencies, file-system only.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Directory Structure
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
.openfleet/
|
|
13
|
+
├── README.md
|
|
14
|
+
├── VERSION
|
|
15
|
+
├── migrations/
|
|
16
|
+
│ └── 0.4.0.md
|
|
17
|
+
|
|
|
18
|
+
├── public/ # Shared knowledge
|
|
19
|
+
│ ├── docs/ # Story write-ups
|
|
20
|
+
│ ├── standards/ # Prescriptive guidelines
|
|
21
|
+
│ └── troubleshooting/ # Common error guides
|
|
22
|
+
|
|
|
23
|
+
└── private/ # gitignored — machine-local
|
|
24
|
+
├── status.md
|
|
25
|
+
├── agents/ # Per-agent scratchpads
|
|
26
|
+
│ ├── Zeus.md # Orchestrator
|
|
27
|
+
│ ├── Recon.md # Scout / Explore
|
|
28
|
+
│ ├── Architect.md # Plan
|
|
29
|
+
│ ├── Builder.md # Execute
|
|
30
|
+
│ ├── Validator.md # Double check
|
|
31
|
+
│ └── Introspector.md # Document gotchas, cache learnings
|
|
32
|
+
|
|
|
33
|
+
├── stories/ # Active working trees
|
|
34
|
+
│ └── <story-name>/
|
|
35
|
+
│ ├── task_tree.md
|
|
36
|
+
│ ├── README.md
|
|
37
|
+
│ ├── Research.md
|
|
38
|
+
│ ├── HLD.md
|
|
39
|
+
│ ├── LLD.md
|
|
40
|
+
│ ├── Implementation.md
|
|
41
|
+
│ └── tasks/
|
|
42
|
+
│ └── <MM-DD_task-name>/
|
|
43
|
+
│ └── ...
|
|
44
|
+
|
|
|
45
|
+
├── experience/
|
|
46
|
+
│ ├── runbooks/ # Pre-skills staging area
|
|
47
|
+
│ └── lessons/ # Common mistakes
|
|
48
|
+
|
|
|
49
|
+
└── transcripts/ # Agent session transcripts
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## 0 Dependencies
|
|
53
|
+
|
|
54
|
+
No SQLite / Postgres, everything is written in the file system, retrieved using
|
|
55
|
+
`grep` and other `fs` tools.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const architectAgent: AgentConfig;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const builderAgent: AgentConfig;
|
package/dist/agents/index.d.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
export declare const agents: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"[Openfleet] Mnemosyne (Reflector)": import("@opencode-ai/sdk").AgentConfig;
|
|
9
|
-
"[Openfleet] Hermes (Housekeeping)": import("@opencode-ai/sdk").AgentConfig;
|
|
2
|
+
Orchestrator: import("@opencode-ai/sdk").AgentConfig;
|
|
3
|
+
Recon: import("@opencode-ai/sdk").AgentConfig;
|
|
4
|
+
Architect: import("@opencode-ai/sdk").AgentConfig;
|
|
5
|
+
Builder: import("@opencode-ai/sdk").AgentConfig;
|
|
6
|
+
Validator: import("@opencode-ai/sdk").AgentConfig;
|
|
7
|
+
Introspector: import("@opencode-ai/sdk").AgentConfig;
|
|
10
8
|
};
|
|
11
9
|
export declare function configureAgents(config: Record<string, unknown> & {
|
|
12
10
|
agent?: Record<string, unknown>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const introspectorAgent: AgentConfig;
|
package/dist/agents/names.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export declare const AGENT_NAMES: {
|
|
2
|
-
readonly ORCHESTRATOR: "
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly REFLECTOR: "[Openfleet] Mnemosyne (Reflector)";
|
|
9
|
-
readonly HOUSEKEEPING: "[Openfleet] Hermes (Housekeeping)";
|
|
2
|
+
readonly ORCHESTRATOR: "Orchestrator";
|
|
3
|
+
readonly SCOUT: "Recon";
|
|
4
|
+
readonly PLANNER: "Architect";
|
|
5
|
+
readonly ACTOR: "Builder";
|
|
6
|
+
readonly REVIEWER: "Validator";
|
|
7
|
+
readonly REFLECTOR: "Introspector";
|
|
10
8
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const reconAgent: AgentConfig;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { AgentConfig } from "@opencode-ai/sdk";
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const validatorAgent: AgentConfig;
|
package/dist/config.d.ts
CHANGED
|
@@ -2,27 +2,28 @@ export declare const OPENFLEET_DIR: string;
|
|
|
2
2
|
export declare const PATHS: {
|
|
3
3
|
readonly agentsMd: string;
|
|
4
4
|
readonly root: string;
|
|
5
|
-
readonly
|
|
5
|
+
readonly public: string;
|
|
6
|
+
readonly private: string;
|
|
6
7
|
readonly templates: string;
|
|
8
|
+
readonly versionFile: string;
|
|
9
|
+
readonly statusFile: string;
|
|
10
|
+
readonly preferencesFile: string;
|
|
7
11
|
readonly agents: string;
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly sessions: string;
|
|
12
|
+
readonly agentOrchestrator: string;
|
|
13
|
+
readonly agentRecon: string;
|
|
14
|
+
readonly agentArchitect: string;
|
|
15
|
+
readonly agentBuilder: string;
|
|
16
|
+
readonly agentValidator: string;
|
|
17
|
+
readonly agentIntrospector: string;
|
|
15
18
|
readonly stories: string;
|
|
16
|
-
readonly docs: string;
|
|
17
19
|
readonly experience: string;
|
|
18
20
|
readonly runbooks: string;
|
|
19
|
-
readonly troubleshooting: string;
|
|
20
21
|
readonly lessons: string;
|
|
21
|
-
readonly blunders: string;
|
|
22
|
-
readonly standards: string;
|
|
23
|
-
readonly reviews: string;
|
|
24
22
|
readonly transcripts: string;
|
|
25
23
|
readonly logFile: string;
|
|
24
|
+
readonly docs: string;
|
|
25
|
+
readonly standards: string;
|
|
26
|
+
readonly troubleshooting: string;
|
|
26
27
|
};
|
|
27
28
|
export declare function getCurrentWeek(): string;
|
|
28
29
|
export declare function getTodayDate(): string;
|