mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 14:37:26 +00:00
Add OpenSpec comparison and compatibility mode
This commit is contained in:
parent
3b3d7ec09a
commit
1aa67367b8
6 changed files with 156 additions and 1 deletions
|
|
@ -20,9 +20,12 @@ Product CLIs may embed LogicSRC as a sub-command:
|
|||
|
||||
```bash
|
||||
sh1pt logicsrc <resource> <action> [options]
|
||||
sh1pt logicsrc --openspec <resource> <action> [options]
|
||||
sh1pt logicsrc --openspec-only <resource> <action> [options]
|
||||
```
|
||||
|
||||
`--openspec` enables OpenSpec.dev-compatible repo-local planning conventions where supported, such as specs, proposals, implementation tasks, and requirement deltas.
|
||||
|
||||
`--openspec-only` means the workflow must stay inside LogicSRC-published schemas, CLI/TUI conventions, SDK contracts, MCP resources/tools/prompts, PWA states, and curl-compatible API surfaces.
|
||||
|
||||
Required v1 command groups:
|
||||
|
|
@ -48,6 +51,7 @@ AgentSwarm master-agent command:
|
|||
|
||||
```bash
|
||||
logicsrc agentswarm --yolo --repo profullstack/logicsrc --agents reproduce,patch,review
|
||||
logicsrc --openspec agentswarm --yolo --repo profullstack/logicsrc
|
||||
sh1pt logicsrc --openspec-only agentswarm --yolo --repo profullstack/logicsrc
|
||||
```
|
||||
|
||||
|
|
|
|||
29
docs/openspec-comparison.md
Normal file
29
docs/openspec-comparison.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# LogicSRC and OpenSpec.dev
|
||||
|
||||
Status: working comparison
|
||||
|
||||
OpenSpec.dev appears focused on lightweight, repo-local feature planning for coding agents: specs, proposals, design notes, tasks, and requirement deltas that live alongside code. LogicSRC is broader: an open coordination standard for humans, AI agents, plugins, payments, hosted products, SDKs, MCP servers, CLIs, TUIs, PWAs, and API/curl surfaces.
|
||||
|
||||
The projects can be complementary. LogicSRC should support an `--openspec` compatibility mode for teams that already use OpenSpec.dev-style planning artifacts.
|
||||
|
||||
| Area | LogicSRC | OpenSpec.dev |
|
||||
|---|---|---|
|
||||
| Primary scope | Open coordination standards for humans, AI agents, plugins, payments, hosted products, and reference implementations. | Lightweight spec-driven planning framework for code changes and agent work. |
|
||||
| Main artifact shape | Versioned schemas, plugin manifests, event contracts, task/agent/run documents, SDK contracts, MCP resources, CLI/TUI/PWA/API surfaces. | Repo-local specs, proposals, design docs, tasks, and spec deltas. |
|
||||
| Agent relationship | Agent profiles, runs, audit logs, model routing, AgentSwarm orchestration, and provider-neutral execution records. | Planning layer that gives coding agents persistent requirements and change context. |
|
||||
| CLI direction | `logicsrc`, plus compatible product aliases and `sh1pt logicsrc ...`. | `@fission-ai/openspec` CLI and slash-command integrations with coding tools. |
|
||||
| MCP | LogicSRC has a standards MCP server and should expose resources, tools, and prompts. | Site states "No MCP" as a product trait. |
|
||||
| SDK/API | Planned Rust, Bun, Node, Python, curl, and PWA surfaces with matching contracts. | Focus appears to be repo workflow and agent planning artifacts rather than a cross-language SDK/API standard. |
|
||||
| Plugins | Plugin manifest standard plus CoinPay, uGig, sh1pt, AgentByte, and future integration specs. | Integrates with many coding agents and editors; plugin-contract scope is not the main positioning. |
|
||||
| Compatibility idea | `logicsrc --openspec` reads/writes OpenSpec.dev-style specs/proposals/tasks where useful. | Can remain the lightweight planning layer inside repos. |
|
||||
|
||||
## CLI Flags
|
||||
|
||||
```bash
|
||||
logicsrc --openspec agentswarm --yolo --repo profullstack/logicsrc
|
||||
logicsrc --openspec-only task validate ./task.yaml
|
||||
sh1pt logicsrc --openspec agentswarm --yolo --repo profullstack/logicsrc
|
||||
```
|
||||
|
||||
- `--openspec` enables OpenSpec.dev-compatible repo-local planning conventions where supported.
|
||||
- `--openspec-only` restricts work to LogicSRC-published OpenSpec contracts.
|
||||
Loading…
Add table
Add a link
Reference in a new issue