open-swarm 0.1.1745274515__py3-none-any.whl → 0.1.1745274942__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.
@@ -0,0 +1,11 @@
1
+ # flock
2
+
3
+ TODO: Add blueprint description, features, and usage instructions.
4
+
5
+ ## Features
6
+
7
+ <!-- List key features here -->
8
+
9
+ ## Environment Variables
10
+
11
+ <!-- Document required environment variables here -->
@@ -0,0 +1,8 @@
1
+ # Enhanced search/analysis UX: show ANSI/emoji boxes, summarize results, show result counts, display params, update line numbers, distinguish code/semantic
2
+ # This is a stub for flock blueprint search/analysis UX. (If this blueprint is implemented, the run method should follow the unified UX pattern.)
3
+
4
+ # No run method in __init__.py, but if/when a blueprint is implemented here, ensure:
5
+ # - Support for both code and semantic search (with clear output distinction)
6
+ # - ANSI/emoji boxes for search/analysis, with result counts, search params, and progress
7
+ # - Creative output box for non-search/agent output
8
+ # - Spinner states: 'Generating.', 'Generating..', 'Generating...', 'Running...'
@@ -0,0 +1,7 @@
1
+ """
2
+ Flock Blueprint (stub)
3
+ """
4
+
5
+ class FlockBlueprint:
6
+ """Stub for Flock Blueprint."""
7
+ pass
@@ -0,0 +1,3 @@
1
+ def test_import_blueprint():
2
+ from .blueprint_flock import FlockBlueprint
3
+ assert FlockBlueprint is not None