speexor 0.1.0 → 0.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.
- package/ARCHITECTURE.md +1 -1
- package/FAQ.md +2 -2
- package/PUBLISH.md +1 -1
- package/README.md +3 -3
- package/REFACTOR-LOG.md +1 -1
- package/docs/SETUP.md +3 -3
- package/package.json +1 -1
package/ARCHITECTURE.md
CHANGED
package/FAQ.md
CHANGED
|
@@ -29,9 +29,9 @@ Version 0.1.0 is a foundation release. The core architecture is solid, but we re
|
|
|
29
29
|
|
|
30
30
|
### How do I install Speexor?
|
|
31
31
|
```bash
|
|
32
|
-
npm install -g
|
|
32
|
+
npm install -g speexor
|
|
33
33
|
# or
|
|
34
|
-
pnpm add -g
|
|
34
|
+
pnpm add -g speexor
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
### Can I use Speexor on Windows?
|
package/PUBLISH.md
CHANGED
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Speexor
|
|
2
2
|
|
|
3
3
|
**Agent Orchestrator for multi-AI coding agents across repositories**
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/speexor)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
[](https://nodejs.org)
|
|
8
8
|
[](https://www.typescriptlang.org/)
|
|
@@ -39,7 +39,7 @@ Speexor ships with a built-in **HTTP dashboard**, a **reaction engine** for auto
|
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
41
|
# 1. Install globally
|
|
42
|
-
npm install -g
|
|
42
|
+
npm install -g speexor
|
|
43
43
|
|
|
44
44
|
# 2. Initialize a project (creates speexor.config.yaml + starts dashboard)
|
|
45
45
|
speexor start https://github.com/your-org/your-repo --port 3000
|
package/REFACTOR-LOG.md
CHANGED
|
@@ -9,7 +9,7 @@ Initial implementation of the Agent Orchestrator based on PRD01.md. Built from s
|
|
|
9
9
|
|
|
10
10
|
### Decisions
|
|
11
11
|
1. **Plugin Architecture**: 7 fixed plugin slots (agent, runtime, workspace, tracker, scm, notifier, terminal) — inspired by AgentWrapper AO but with cleaner interface segregation
|
|
12
|
-
2. **Monorepo as Single Package**: Unlike AO's multi-package structure, v1 lives in a single
|
|
12
|
+
2. **Monorepo as Single Package**: Unlike AO's multi-package structure, v1 lives in a single `speexor` package with internal module separation. This reduces initial complexity while maintaining clean module boundaries via `src/` directories.
|
|
13
13
|
3. **TypeScript ESM Only**: No CJS support. The rest of speexjs ecosystem is ESM-first.
|
|
14
14
|
4. **Built-in HTTP Dashboard**: Using Node.js built-in `http` module instead of Express/NestJS to keep dependencies minimal for v1.
|
|
15
15
|
5. **No Dynamic Plugin Loading**: All built-in plugins are hardcoded in `loadAllPlugins()`. Dynamic loading from external packages is deferred to v2.
|
package/docs/SETUP.md
CHANGED
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# Via npm
|
|
20
|
-
npm install -g
|
|
20
|
+
npm install -g speexor
|
|
21
21
|
|
|
22
22
|
# Or via pnpm
|
|
23
|
-
pnpm add -g
|
|
23
|
+
pnpm add -g speexor
|
|
24
24
|
|
|
25
25
|
# Or run from the monorepo
|
|
26
26
|
cd speexjs
|
|
27
27
|
pnpm install
|
|
28
|
-
pnpm --filter
|
|
28
|
+
pnpm --filter speexor build
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## Quick Start
|