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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Speexor Architecture
2
2
 
3
- **Version:** 0.1.0 — **Package:** `@speexjs/speexor`
3
+ **Version:** 0.1.0 — **Package:** `speexor`
4
4
 
5
5
  ---
6
6
 
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 @speexjs/speexor
32
+ npm install -g speexor
33
33
  # or
34
- pnpm add -g @speexjs/speexor
34
+ pnpm add -g speexor
35
35
  ```
36
36
 
37
37
  ### Can I use Speexor on Windows?
package/PUBLISH.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Publishing Speexor
2
2
 
3
- This document describes the process for publishing `@speexjs/speexor` to npm.
3
+ This document describes the process for publishing `speexor` to npm.
4
4
 
5
5
  ## Prerequisites
6
6
  - npm account with access to `@speexjs` organization
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @speexjs/speexor
1
+ # Speexor
2
2
 
3
3
  **Agent Orchestrator for multi-AI coding agents across repositories**
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@speexjs/speexor.svg)](https://www.npmjs.com/package/@speexjs/speexor)
5
+ [![npm version](https://img.shields.io/npm/v/speexor.svg)](https://www.npmjs.com/package/speexor)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
  [![Node](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org)
8
8
  [![TypeScript](https://img.shields.io/badge/%3C/%3E-TypeScript-3178C6)](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 @speexjs/speexor
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 `@speexjs/speexor` package with internal module separation. This reduces initial complexity while maintaining clean module boundaries via `src/` directories.
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 @speexjs/speexor
20
+ npm install -g speexor
21
21
 
22
22
  # Or via pnpm
23
- pnpm add -g @speexjs/speexor
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 @speexjs/speexor build
28
+ pnpm --filter speexor build
29
29
  ```
30
30
 
31
31
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "speexor",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Speexor — Agent Orchestrator for multi-AI coding agent orchestration across repositories",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",