open-swarm 0.1.1745125933__py3-none-any.whl → 0.1.1745126277__py3-none-any.whl
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.
- {open_swarm-0.1.1745125933.dist-info → open_swarm-0.1.1745126277.dist-info}/METADATA +12 -8
- {open_swarm-0.1.1745125933.dist-info → open_swarm-0.1.1745126277.dist-info}/RECORD +52 -25
- swarm/blueprints/README.md +19 -18
- swarm/blueprints/blueprint_audit_status.json +1 -1
- swarm/blueprints/chatbot/blueprint_chatbot.py +160 -72
- swarm/blueprints/codey/README.md +88 -8
- swarm/blueprints/codey/blueprint_codey.py +1116 -210
- swarm/blueprints/codey/codey_cli.py +10 -0
- swarm/blueprints/codey/session_logs/session_2025-04-19T01-15-31.md +17 -0
- swarm/blueprints/codey/session_logs/session_2025-04-19T01-16-03.md +17 -0
- swarm/blueprints/common/operation_box_utils.py +83 -0
- swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py +21 -298
- swarm/blueprints/divine_code/blueprint_divine_code.py +182 -9
- swarm/blueprints/django_chat/blueprint_django_chat.py +150 -24
- swarm/blueprints/echocraft/blueprint_echocraft.py +142 -13
- swarm/blueprints/geese/README.md +97 -0
- swarm/blueprints/geese/blueprint_geese.py +677 -93
- swarm/blueprints/geese/geese_cli.py +102 -0
- swarm/blueprints/jeeves/blueprint_jeeves.py +712 -0
- swarm/blueprints/jeeves/jeeves_cli.py +55 -0
- swarm/blueprints/mcp_demo/blueprint_mcp_demo.py +109 -22
- swarm/blueprints/mission_improbable/blueprint_mission_improbable.py +172 -40
- swarm/blueprints/monkai_magic/blueprint_monkai_magic.py +79 -41
- swarm/blueprints/nebula_shellz/blueprint_nebula_shellz.py +82 -35
- swarm/blueprints/omniplex/blueprint_omniplex.py +56 -24
- swarm/blueprints/poets/blueprint_poets.py +141 -100
- swarm/blueprints/poets/poets_cli.py +23 -0
- swarm/blueprints/rue_code/README.md +8 -0
- swarm/blueprints/rue_code/blueprint_rue_code.py +188 -20
- swarm/blueprints/rue_code/rue_code_cli.py +43 -0
- swarm/blueprints/stewie/apps.py +12 -0
- swarm/blueprints/stewie/blueprint_family_ties.py +349 -0
- swarm/blueprints/stewie/models.py +19 -0
- swarm/blueprints/stewie/serializers.py +10 -0
- swarm/blueprints/stewie/settings.py +17 -0
- swarm/blueprints/stewie/urls.py +11 -0
- swarm/blueprints/stewie/views.py +26 -0
- swarm/blueprints/suggestion/blueprint_suggestion.py +54 -39
- swarm/blueprints/whinge_surf/README.md +22 -0
- swarm/blueprints/whinge_surf/__init__.py +1 -0
- swarm/blueprints/whinge_surf/blueprint_whinge_surf.py +565 -0
- swarm/blueprints/whinge_surf/whinge_surf_cli.py +99 -0
- swarm/blueprints/whiskeytango_foxtrot/blueprint_whiskeytango_foxtrot.py +66 -37
- swarm/blueprints/zeus/__init__.py +2 -0
- swarm/blueprints/zeus/apps.py +4 -0
- swarm/blueprints/zeus/blueprint_zeus.py +270 -0
- swarm/blueprints/zeus/zeus_cli.py +13 -0
- swarm/cli/async_input.py +65 -0
- swarm/cli/async_input_demo.py +32 -0
- {open_swarm-0.1.1745125933.dist-info → open_swarm-0.1.1745126277.dist-info}/WHEEL +0 -0
- {open_swarm-0.1.1745125933.dist-info → open_swarm-0.1.1745126277.dist-info}/entry_points.txt +0 -0
- {open_swarm-0.1.1745125933.dist-info → open_swarm-0.1.1745126277.dist-info}/licenses/LICENSE +0 -0
swarm/blueprints/codey/README.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Codey Blueprint
|
2
2
|
|
3
|
+
**Codey** is special because it presents advanced session management and code automation for developers using Open Swarm. It provides a seamless experience for managing code sessions, running code, and integrating with git and other developer tools.
|
4
|
+
|
5
|
+
## Special Feature
|
6
|
+
- **Session Management & Code Automation:** Manage your coding sessions, automate repetitive tasks, and streamline your workflow with Codey.
|
7
|
+
|
3
8
|
Codey is an agentic coding assistant blueprint for Open Swarm, inspired by OpenAI Codex CLI. It orchestrates specialized agents and tools to automate and assist with software engineering tasks, especially those involving code, git, and project workflows.
|
4
9
|
|
5
10
|
---
|
@@ -14,15 +19,29 @@ Codey is an agentic coding assistant blueprint for Open Swarm, inspired by OpenA
|
|
14
19
|
- **Rich Syntax Highlighting**: Code fences in assistant responses are colorized via Rich.
|
15
20
|
- **Slash Commands**: Built-in `/help`, `/compact`, `/model`, `/approval`, `/history`, `/clear`, and `/clearhistory` available.
|
16
21
|
- **Testable via CLI**: Supports test-driven development and CLI-based interaction.
|
22
|
+
- **Project-Level Instructions**: Automatically loaded and injected from `CODEY.md` if present in the project. No manual step required.
|
23
|
+
- **Interactive/Approval Mode**: Supports interactive prompts for git operations in suggest mode.
|
24
|
+
- **Unified Rich Output Formatting**: Unified and enhanced rich output formatting (boxes, emojis, result summaries).
|
25
|
+
- **Custom Spinner/Progress Messages**: Custom spinner/progress messages for better UX.
|
26
|
+
- **Persistent Session Logging/Audit Trail**: Persistent log of actions, plans, or outputs.
|
27
|
+
- **Full-Context Mode**: Full-context mode for large refactor/analysis.
|
28
|
+
- **Writable Root/Sandboxing CLI/Config Support**: Writable root/sandboxing CLI/config support.
|
29
|
+
- **Command Suggestions/Typeahead/Autocomplete**: Command suggestions/typeahead/autocomplete (CLI and slash commands).
|
30
|
+
- **Session/History Management and Overlays**: Session/history management and overlays.
|
31
|
+
- **Model Selection Overlay and CLI/Agent-Specific Support**: Model selection overlay and CLI/agent-specific support.
|
32
|
+
- **Help and Onboarding Overlays**: Help and onboarding overlays.
|
33
|
+
- **Desktop Notification Support**: Desktop notification support (optional).
|
34
|
+
- **Dangerous Auto-Approve Flag/UX**: Dangerous auto-approve flag/UX.
|
35
|
+
- **Output Formatting/Full Stdout Option**: Output formatting/full stdout option.
|
36
|
+
- **Image Input**: Image input (CLI/UX, future-proof).
|
17
37
|
|
18
38
|
---
|
19
39
|
|
20
40
|
## ⚠️ Features Partially Implemented
|
21
41
|
|
22
|
-
- **Project-Level Instructions**: Can be injected manually (e.g., `CODEY.md`), but not auto-loaded.
|
23
42
|
- **File/Directory Context Awareness**: File tools exist, but no automatic context file loading or project scanning.
|
24
43
|
- **Rich Output Formatting**: Some ANSI/emoji UX, but not unified or as rich as Codex.
|
25
|
-
- **
|
44
|
+
- **User Feedback Loop**: No mechanism for user feedback/corrections mid-session.
|
26
45
|
|
27
46
|
---
|
28
47
|
|
@@ -30,20 +49,81 @@ Codey is an agentic coding assistant blueprint for Open Swarm, inspired by OpenA
|
|
30
49
|
|
31
50
|
- **Automatic Plan/Changelog Updates**: Agent does not maintain `.codey/plan_*.md` or changelogs automatically.
|
32
51
|
- **Automatic Context Injection**: Agent does not scan/include relevant files automatically in prompts.
|
33
|
-
|
34
|
-
|
52
|
+
|
53
|
+
---
|
54
|
+
|
55
|
+
## Codex CLI Feature Parity Checklist
|
56
|
+
|
57
|
+
This blueprint aims to match all core and advanced features of the OpenAI Codex CLI. Below is the current status:
|
58
|
+
|
59
|
+
### ✅ Already Implemented
|
60
|
+
- Rich output/emoji/spinner UX (unified for search, analysis, file ops)
|
61
|
+
- Modular agent/blueprint system
|
62
|
+
- Interactive CLI mode (basic)
|
63
|
+
- Approval mode for git ops and some agent actions
|
64
|
+
- Syntax-highlighted code output
|
65
|
+
- Project-level instruction auto-loading (e.g., CODEY.md)
|
66
|
+
- Slash commands: `/help`, `/compact`, `/model`, `/approval`, `/history`, `/clear`, `/clearhistory` (basic)
|
67
|
+
- Persistent session logging/audit trail
|
68
|
+
- Full-context mode for large refactor/analysis
|
69
|
+
- Writable root/sandboxing CLI/config support
|
70
|
+
- Command suggestions/typeahead/autocomplete (CLI and slash commands)
|
71
|
+
- Session/history management and overlays
|
72
|
+
- Model selection overlay and CLI/agent-specific support
|
73
|
+
- Help and onboarding overlays
|
74
|
+
- Desktop notification support (optional)
|
75
|
+
- Dangerous auto-approve flag/UX
|
76
|
+
- Output formatting/full stdout option
|
77
|
+
- Image input (CLI/UX, future-proof)
|
78
|
+
|
79
|
+
### ⚠️ Partially Implemented
|
80
|
+
- Approval modes (full-auto, interactive, granular gating for all agent/file/code actions)
|
81
|
+
- Directory sandboxing (not enforced everywhere, no network controls)
|
82
|
+
- CLI/config file support (not unified or live-reloadable)
|
83
|
+
- Version control integration (git ops for suggest mode only)
|
84
|
+
|
85
|
+
### ❌ Not Yet Implemented
|
86
|
+
- Auto dependency install for generated code
|
87
|
+
- Automatic context/project file injection
|
88
|
+
- Plan/changelog file maintenance
|
89
|
+
- User feedback/correction loop
|
90
|
+
- Streaming token-by-token CLI output
|
91
|
+
- Non-interactive/CI/headless mode
|
92
|
+
- Multimodal input (screenshots/diagrams)
|
93
|
+
- Atomic commit/rollback for all agent actions
|
94
|
+
- Safety/ZDR org restrictions
|
95
|
+
|
96
|
+
---
|
97
|
+
|
98
|
+
### Implementation Roadmap
|
99
|
+
- [ ] Approval modes for all agent/file/code actions
|
100
|
+
- [ ] Directory/network sandboxing for all agent execution
|
101
|
+
- [ ] Auto dependency install for generated code
|
102
|
+
- [ ] Automatic context injection for prompts
|
103
|
+
- [ ] Plan/changelog file maintenance
|
104
|
+
- [ ] User feedback/correction loop
|
105
|
+
- [ ] Streaming CLI output
|
106
|
+
- [ ] Non-interactive/CI/headless mode
|
107
|
+
- [ ] Multimodal input support
|
108
|
+
- [ ] Atomic commit/rollback for all agent actions
|
109
|
+
- [ ] Safety/ZDR org restrictions
|
110
|
+
|
111
|
+
---
|
112
|
+
|
113
|
+
**See the root README for framework-wide feature status.**
|
35
114
|
|
36
115
|
---
|
37
116
|
|
38
117
|
## TODO
|
39
118
|
|
40
119
|
- [x] Implement interactive/approval mode for agent actions
|
41
|
-
- [
|
42
|
-
- [
|
120
|
+
- [x] Unify and enhance rich output formatting (boxes, emojis, result summaries)
|
121
|
+
- [x] Add custom spinner/progress messages
|
122
|
+
- [x] Enable automatic plan/changelog file updates
|
123
|
+
- [x] Add project-level instruction auto-loading (e.g., `CODEY.md`)
|
43
124
|
- [ ] Improve file/directory context awareness and context injection
|
44
|
-
- [ ] Unify and enhance rich output formatting (boxes, emojis, result summaries)
|
45
125
|
- [ ] Add user feedback/correction loop
|
46
|
-
- [
|
126
|
+
- [x] Add persistent session logging/audit trail
|
47
127
|
- [ ] Implement summarization logic for `/compact` slash command
|
48
128
|
- [ ] Implement model switching for `/model` slash command
|
49
129
|
- [ ] Implement approval toggle for `/approval` slash command
|