sudocode 1.1.12 → 1.1.15

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.
Files changed (2) hide show
  1. package/README.md +51 -35
  2. package/package.json +9 -5
package/README.md CHANGED
@@ -1,59 +1,68 @@
1
1
  # sudocode
2
2
 
3
- Git-native spec and issue management for AI-assisted software development.
3
+ Lightweight agent orchestration tool for AI-assisted software development.
4
4
 
5
5
  ## Overview
6
6
 
7
- Sudocode is a git-native workflow tool designed for AI-assisted development. It stores specs and issues as JSONL files alongside your code, enabling version control, branching, and merging of your project management data just like code.
7
+ sudocode is a lightweight agent orchestration system that lives in your repo. Adding sudocode into your repo adds instant organizational capabilities to your coding agents. They'll gain the ability to track context over long-horizon tasks and work collaboratively on complex tasks. sudocode manages git worktrees so you can run multiple agents in parallel in isolation with minimal management.
8
8
 
9
- **Key Features:**
10
- - **Git-native** - All data stored in `.sudocode/` as JSONL, versioned with your code
11
- - **Anchored feedback** - Link issues to specific lines in specs with smart relocation
12
- - **Relationship tracking** - Model dependencies, blockers, and implementations
13
- - **MCP integration** - Works seamlessly with Claude and other AI assistants
14
- - **Fast local cache** - SQLite for instant queries without parsing JSONL
15
- - **Bidirectional sync** - Export to markdown, edit, import back
9
+ ## Key capabilities
16
10
 
17
- ## What's Included
11
+ - Automate context handoff for complex tasks with sudocode's git-native agent memory system
12
+ - Bring order to chaos by organizing your requirements, background context, and implementation plans into structured, executable issue graphs
13
+ - Visualize outputs and execution feedback in real-time
14
+ - Run as many Claude Code/Codex/Cursor (+more) agents in parallel as you can handle
15
+ - Isolate agent work in worktrees and creates checkpoints
16
+ - Load work items from external sources (GitHub Issues, Spec Kit, openspec, beads, etc) and orchestrate agents to implement them
18
17
 
19
- This meta-package bundles all sudocode components:
18
+ ## Quick Start
20
19
 
21
- - **@sudocode-ai/cli** - Command-line interface (`sudocode` command)
22
- - **@sudocode-ai/mcp** - Model Context Protocol server for AI assistants
23
- - **@sudocode-ai/types** - TypeScript type definitions
20
+ ```bash
21
+ # Install globally (recommended: use npx instead to avoid Node version conflicts)
22
+ npm install -g sudocode
23
+
24
+ # Initialize a sudocode project in your project directory.
25
+ sudocode init
24
26
 
25
- ## Installation
27
+ # Run the local sudocode server from anywhere
28
+ sudocode server
29
+ ```
26
30
 
31
+ For Claude Code, you can install the plugin:
27
32
  ```bash
28
- npm install -g sudocode
33
+ claude plugin marketplace add sudocode-ai/sudocode
34
+ claude plugin install sudocode
29
35
  ```
30
36
 
31
- After installation, both `sudocode` (also aliased as `sdc`) commands will be available.
37
+ Check out our [Quick Start Guide](https://docs.sudocode.ai/quickstart#step-4%3A-set-up-your-agent) for instructions on setting up other agents.
32
38
 
33
- ## Quick Start
39
+ ## How to use it
34
40
 
35
- ```bash
36
- # Initialize in your project
37
- sudocode init
41
+ The sudocode package includes a CLI, local server/UI, and an MCP server.
38
42
 
39
- # Create your first spec
40
- sudocode spec create "User authentication system" -p 4
43
+ Use the CLI for managing specs and issues in sudocode's agent memory system. It contains a complete interface for viewing, editing, and managing relationships between entities.
41
44
 
42
- # Create an issue
43
- sudocode issue create "Implement OAuth login" -p 3 -a alice
45
+ Use the local server to automatically sync memory and enable agent execution and visualization. The issue kanban view helps you track issue status and progress. You can spawn new agents, update agent implementation plans, and provide feedback or guidance to running agents in a single, focused view.
44
46
 
45
- # Link the issue to the spec
46
- sudocode link ISSUE-1 SPEC-1 --type implements
47
+ ## What's Included
47
48
 
48
- # Show what's ready to work on
49
- sudocode ready
49
+ This meta-package bundles all sudocode components:
50
50
 
51
- # Update issue status
52
- sudocode issue update ISSUE-1 --status in_progress
51
+ ### Core Packages
53
52
 
54
- # View project status
55
- sudocode status
56
- ```
53
+ - **@sudocode-ai/cli** - Command-line interface (`sudocode` command)
54
+ - **@sudocode-ai/mcp** - Model Context Protocol server for AI assistants
55
+ - **@sudocode-ai/local-server** - Local backend server with execution engine
56
+ - **@sudocode-ai/types** - TypeScript type definitions
57
+
58
+ ### Integration Plugins
59
+
60
+ sudocode supports bi-directional syncs and imports with multiple third-party data sources. Create a discussion/issue on our repo to suggest any other data sources you'd like us to support!
61
+
62
+ - **@sudocode-ai/integration-github** - Import GitHub issues using `gh` CLI
63
+ - **@sudocode-ai/integration-beads** - Sync with Beads local file-based issue tracking
64
+ - **@sudocode-ai/integration-openspec** - Sync with OpenSpec standardized specification format
65
+ - **@sudocode-ai/integration-speckit** - Sync with spec-kit markdown-based specification system
57
66
 
58
67
  ## Core Commands
59
68
 
@@ -216,8 +225,15 @@ The JSONL files are designed to be merged in git like code - each line is a comp
216
225
  You can also install packages individually:
217
226
 
218
227
  ```bash
228
+ # Core packages
219
229
  npm install -g @sudocode-ai/cli # CLI only
220
230
  npm install -g @sudocode-ai/mcp # MCP server only
221
- npm install -g @sudocode-ai/local-server # Under construction!
231
+ npm install -g @sudocode-ai/local-server # Local backend server
222
232
  npm install @sudocode-ai/types # Types only (for development)
233
+
234
+ # Integration plugins
235
+ npm install @sudocode-ai/integration-github # GitHub issues import
236
+ npm install @sudocode-ai/integration-beads # Beads sync
237
+ npm install @sudocode-ai/integration-openspec # OpenSpec sync
238
+ npm install @sudocode-ai/integration-speckit # Spec-kit sync
223
239
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sudocode",
3
- "version": "1.1.12",
3
+ "version": "1.1.15",
4
4
  "description": "Git-native spec and issue management for AI-assisted software development - meta-package",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,9 +20,13 @@
20
20
  "author": "sudocode AI",
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@sudocode-ai/types": "^0.1.12",
24
- "@sudocode-ai/cli": "^0.1.12",
25
- "@sudocode-ai/mcp": "^0.1.12",
26
- "@sudocode-ai/local-server": "^0.1.12"
23
+ "@sudocode-ai/types": "^0.1.15",
24
+ "@sudocode-ai/cli": "^0.1.15",
25
+ "@sudocode-ai/mcp": "^0.1.15",
26
+ "@sudocode-ai/local-server": "^0.1.15",
27
+ "@sudocode-ai/integration-github": "^0.1.15",
28
+ "@sudocode-ai/integration-beads": "^0.1.15",
29
+ "@sudocode-ai/integration-openspec": "^0.1.15",
30
+ "@sudocode-ai/integration-speckit": "^0.1.15"
27
31
  }
28
32
  }