flock-core 0.5.0b62__py3-none-any.whl → 0.5.0b63__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.

Potentially problematic release.


This version of flock-core might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flock-core
3
- Version: 0.5.0b62
3
+ Version: 0.5.0b63
4
4
  Summary: Add your description here
5
5
  Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
6
6
  License-File: LICENSE
@@ -178,7 +178,7 @@ agent.consumes(BugReport).publishes(BugDiagnosis)
178
178
  ```
179
179
 
180
180
  <p align="center">
181
- <img alt="Flock Banner" src="docs/img/bug_diagnosis.png" width="1000">
181
+ <img alt="Flock Banner" src="docs/assets/images/bug_diagnosis.png" width="1000">
182
182
  </p>
183
183
 
184
184
  **Why this matters:**
@@ -437,7 +437,7 @@ await flock.serve(dashboard=True)
437
437
  The dashboard provides comprehensive real-time visibility into your agent system with professional UI/UX:
438
438
 
439
439
  <p align="center">
440
- <img alt="Flock Agent View" src="docs/img/flock_ui_agent_view.png" width="1000">
440
+ <img alt="Flock Agent View" src="docs/assets/images/flock_ui_agent_view.png" width="1000">
441
441
  <i>Agent View: See agent communication patterns and message flows in real-time</i>
442
442
  </p>
443
443
 
@@ -448,7 +448,7 @@ The dashboard provides comprehensive real-time visibility into your agent system
448
448
  - **Blackboard View** - Messages as nodes with data transformations as edges
449
449
 
450
450
  <p align="center">
451
- <img alt="Flock Blackboard View" src="docs/img/flock_ui_blackboard_view.png" width="1000">
451
+ <img alt="Flock Blackboard View" src="docs/assets/images/flock_ui_blackboard_view.png" width="1000">
452
452
  <i>Blackboard View: Track data lineage and transformations across the system</i>
453
453
  </p>
454
454
 
@@ -488,7 +488,7 @@ The dashboard provides comprehensive real-time visibility into your agent system
488
488
  The dashboard includes a **Jaeger-style trace viewer** with 7 powerful visualization modes:
489
489
 
490
490
  <p align="center">
491
- <img alt="Trace Viewer" src="docs/img/trace_1.png" width="1000">
491
+ <img alt="Trace Viewer" src="docs/assets/images/trace_1.png" width="1000">
492
492
  <i>Trace Viewer: Timeline view showing span hierarchies and execution flow</i>
493
493
  </p>
494
494
 
@@ -511,7 +511,7 @@ The dashboard includes a **Jaeger-style trace viewer** with 7 powerful visualiza
511
511
  - **CSV Export** - Download query results for offline analysis
512
512
 
513
513
  <p align="center">
514
- <img alt="Trace Viewer" src="docs/img/trace_2.png" width="1000">
514
+ <img alt="Trace Viewer" src="docs/assets/images/trace_2.png" width="1000">
515
515
  <i>Trace Viewer: Dependency Analysis</i>
516
516
  </p>
517
517
 
@@ -565,7 +565,7 @@ AI: [queries DuckDB]
565
565
  **Why DuckDB?** 10-100x faster than SQLite for analytical queries. Zero configuration. AI agents can debug your AI agents.
566
566
 
567
567
  <p align="center">
568
- <img alt="Trace Viewer" src="docs/img/trace_3.png" width="1000">
568
+ <img alt="Trace Viewer" src="docs/assets/images/trace_3.png" width="1000">
569
569
  <i>Trace Viewer: DuckDB Query</i>
570
570
  </p>
571
571
 
@@ -677,83 +677,18 @@ All planned for v1.0
677
677
 
678
678
  ## Roadmap to 1.0
679
679
 
680
- We're not building a toy framework. We're building enterprise infrastructure for AI agents.
681
-
682
- **See [ROADMAP.md](ROADMAP.md) for the complete roadmap with detailed code examples.**
683
-
684
- ### Flock 1.0 - Q4 2025 Release
685
-
686
- **We're confident we can deliver all enterprise features by Q4 2025:**
687
-
688
- **🏢 Enterprise Persistence**
689
- - Redis and PostgreSQL backends for durable blackboard state
690
- - Agent crashes? State persists, agents resume automatically
691
- - Multi-region deployments with shared blackboard
692
- - SQL queries on artifact history for analytics and compliance
693
-
694
- **🔄 Advanced Error Handling**
695
- - Exponential backoff with jitter for transient failures
696
- - Dead letter queues for poison messages
697
- - Per-agent circuit breakers with auto-recovery
698
- - Full observability of all failure modes
699
-
700
- **🤝 Aggregation Patterns**
701
- - Map-reduce pattern for parallel processing → aggregation
702
- - Voting/consensus for multi-agent decision making
703
- - Best-result selection with custom scoring functions
704
-
705
- **📨 Kafka Event Backbone**
706
- - Event replay for debugging production issues in development
707
- - Time-travel debugging with checkpoint restoration
708
- - Immutable audit logs for regulatory compliance
709
- - Backfill new agents with historical data
710
-
711
- **☸️ Kubernetes-Native Deployment**
712
- - Helm charts for production deployments
713
- - Horizontal auto-scaling based on blackboard queue depth
714
- - Zero-downtime deployments with health checks
715
- - Production-grade readiness probes
716
-
717
- **🔐 OAuth/RBAC**
718
- - OAuth2/OIDC authentication for multi-tenant SaaS
719
- - API key authentication for programmatic access
720
- - Role-based access control with agent-level permissions
721
- - Complete audit trails for compliance (SOC2, HIPAA)
722
-
723
- **👤 Human-in-the-Loop**
724
- - Approval patterns for high-value transactions
725
- - Dashboard integration for pending approvals
726
- - Slack/email notifications with audit trails
727
- - Training mode with review-before-automation
728
-
729
- **🔀 Fan-Out/Fan-In Patterns**
730
- - Dynamic work distribution based on runtime data
731
- - Result collection and aggregation
732
- - Map-reduce over LLM operations
733
- - Sharding for horizontal scale
734
-
735
- **⏰ Time-Based Scheduling**
736
- - Cron-like triggers for periodic workflows
737
- - Sliding window patterns for real-time analytics
738
- - Hybrid event+time based triggers
739
- - SLA monitoring and data freshness checks
740
-
741
- ### Release Criteria for v1.0
742
-
743
- **v1.0 will ship when all of these are complete:**
744
- 1. ✅ Production persistence (Redis + Postgres backends stable)
745
- 2. ✅ Advanced error handling (retry, circuit breakers, DLQ working)
746
- 3. ✅ Aggregation patterns (map-reduce, voting, consensus implemented)
747
- 4. ✅ Kafka event backbone (replay and time-travel debugging)
748
- 5. ✅ Kubernetes native (Helm chart with auto-scaling)
749
- 6. ✅ Authentication (OAuth/OIDC + API key auth)
750
- 7. ✅ Human-in-the-loop (approval patterns implemented)
751
- 8. ✅ Fan-out/fan-in (distributed processing patterns)
752
- 9. ✅ Time-based scheduling (cron + sliding windows)
753
- 10. ✅ 85%+ test coverage (1000+ tests passing)
754
- 11. ✅ Production validation (deployed at 3+ companies)
755
-
756
- **Target Date:** Q4 2025
680
+ We're building enterprise infrastructure for AI agents and tracking the work publicly. Check [ROADMAP.md](ROADMAP.md) for deep dives and status updates.
681
+
682
+ ### 0.5.0 Beta (In Flight)
683
+ - **Core data & governance:** [#271](https://github.com/whiteducksoftware/flock/issues/271), [#274](https://github.com/whiteducksoftware/flock/issues/274), [#273](https://github.com/whiteducksoftware/flock/issues/273), [#281](https://github.com/whiteducksoftware/flock/issues/281)
684
+ - **Execution patterns & scheduling:** [#282](https://github.com/whiteducksoftware/flock/issues/282), [#283](https://github.com/whiteducksoftware/flock/issues/283)
685
+ - **REST access & integrations:** [#286](https://github.com/whiteducksoftware/flock/issues/286), [#287](https://github.com/whiteducksoftware/flock/issues/287), [#288](https://github.com/whiteducksoftware/flock/issues/288), [#289](https://github.com/whiteducksoftware/flock/issues/289), [#290](https://github.com/whiteducksoftware/flock/issues/290), [#291](https://github.com/whiteducksoftware/flock/issues/291), [#292](https://github.com/whiteducksoftware/flock/issues/292), [#293](https://github.com/whiteducksoftware/flock/issues/293)
686
+ - **Docs & onboarding:** [#270](https://github.com/whiteducksoftware/flock/issues/270), [#269](https://github.com/whiteducksoftware/flock/issues/269)
687
+
688
+ ### 1.0 Release Goals (Target Q4 2025)
689
+ - **Reliability & operations:** [#277](https://github.com/whiteducksoftware/flock/issues/277), [#278](https://github.com/whiteducksoftware/flock/issues/278), [#279](https://github.com/whiteducksoftware/flock/issues/279), [#294](https://github.com/whiteducksoftware/flock/issues/294)
690
+ - **Platform validation & quality:** [#275](https://github.com/whiteducksoftware/flock/issues/275), [#276](https://github.com/whiteducksoftware/flock/issues/276), [#284](https://github.com/whiteducksoftware/flock/issues/284), [#285](https://github.com/whiteducksoftware/flock/issues/285)
691
+ - **Security & access:** [#280](https://github.com/whiteducksoftware/flock/issues/280)
757
692
 
758
693
  ---
759
694
 
@@ -508,8 +508,8 @@ flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1
508
508
  flock/themes/zenwritten-dark.toml,sha256=-dgaUfg1iCr5Dv4UEeHv_cN4GrPUCWAiHSxWK20X1kI,1663
509
509
  flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
510
510
  flock/utility/output_utility_component.py,sha256=yVHhlIIIoYKziI5UyT_zvQb4G-NsxCTgLwA1wXXTTj4,9047
511
- flock_core-0.5.0b62.dist-info/METADATA,sha256=cmZyLdyb1GOdu0XhlR5pE6fKdsfWwcMSWpsDG_TH2DU,35901
512
- flock_core-0.5.0b62.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
513
- flock_core-0.5.0b62.dist-info/entry_points.txt,sha256=UQdPmtHd97gSA_IdLt9MOd-1rrf_WO-qsQeIiHWVrp4,42
514
- flock_core-0.5.0b62.dist-info/licenses/LICENSE,sha256=U3IZuTbC0yLj7huwJdldLBipSOHF4cPf6cUOodFiaBE,1072
515
- flock_core-0.5.0b62.dist-info/RECORD,,
511
+ flock_core-0.5.0b63.dist-info/METADATA,sha256=dFHOh--Y96joJgB4NdboiySS8gX3kAN2imVW3bEBAgc,34949
512
+ flock_core-0.5.0b63.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
513
+ flock_core-0.5.0b63.dist-info/entry_points.txt,sha256=UQdPmtHd97gSA_IdLt9MOd-1rrf_WO-qsQeIiHWVrp4,42
514
+ flock_core-0.5.0b63.dist-info/licenses/LICENSE,sha256=U3IZuTbC0yLj7huwJdldLBipSOHF4cPf6cUOodFiaBE,1072
515
+ flock_core-0.5.0b63.dist-info/RECORD,,