A curated collection of experiments and frameworks exploring the intersection of Agentic AI and Generative AI, including reasoning driven LLM agents, retrieval augmented generation (RAG), multimodal synthesis, and autonomous decision making systems.
Stars
3
Forks
0
Watchers
3
Open Issues
1
Overall repository health assessment
No package.json found
This might not be a Node.js project
137
commits
feat(examples): add multi-agent system demo\n\n- Message passing between agents\n- Task coordination with capability matching\n- Consensus protocol for collective decisions\n- Feedback loop for iterative task improvement\n- 4 comprehensive demos showcasing collaboration patterns
3e2819bView on GitHubfeat(agents): add multi-agent collaboration framework\n\n- MessageBroker for centralized communication\n- CollaborativeAgent with message handlers\n- TaskCoordinator for task distribution\n- ConsensusProtocol for multi-agent decisions\n- Priority-based message queuing and broadcasting
be8cafaView on GitHubfeat(agents): add feedback loop and reinforcement learning\n\n- FeedbackLoop for iterative refinement with learning\n- Pattern extraction from successes and failures\n- AdaptiveFeedback for strategy selection\n- ReinforcementSignal with epsilon-greedy action selection\n- Convergence rate tracking and iteration summaries
6b8b207View on GitHubfeat(examples): add goal-oriented agent demo\n\n- Goal decomposition with hierarchical planning\n- Stub execution via tool registry\n- Self-critique with improvement prompts\n- Memory summary for recorded actions
b1cf0cdView on GitHubtest(agents): add tests for tool registry and enhanced memory\n\n- Register/execute tools and batch execution\n- Default tools smoke test\n- EnhancedMemory record/recall and working context
e7999e4View on GitHubfeat(agents): add context manager for long-term context\n\n- ContextWindow for timestamped content with importance\n- Automatic compression when approaching token limits\n- Summarization of old low-importance windows\n- Recency-based importance adjustment\n- Context retrieval within token budget\n- Statistics and status reporting
362ac45View on GitHubfeat(agents): add self-critique system\n\n- AgentCritic for multi-dimensional output evaluation\n- Critique types: correctness, completeness, efficiency, clarity, safety\n- Configurable thresholds and retry logic\n- Improvement prompt generation\n- Critique report formatting
c986d5dView on GitHubfeat(agents): add goal decomposition system\n\n- Task class with status, dependencies, and hierarchy\n- GoalDecomposer for breaking down high-level goals\n- Pattern-based decomposition (research, creation, compound)\n- Topological sort for execution order\n- Task visualization with dependency tracking
989b001View on GitHubfeat(examples): add integrated agent demo\n\n- Agent with tools + memory + reasoning chains\n- Tree of thoughts planning with memory tracking\n- Multi-agent collaboration with shared memory\n- Entity tracking and event timeline\n- Full end-to-end agentic workflow demonstration
dd16db2View on GitHubfeat(agents): add enhanced memory system\n\n- SemanticMemory for facts, entities, and knowledge\n- EpisodicMemory for event sequences and timelines\n- WorkingMemory for current context\n- EnhancedMemory unifying all three layers\n- Entity tracking with properties and mention counts
49c0759View on GitHubfeat(agents): add tool registry system\n\n- Tool class with validation and execution\n- ToolRegistry for registration and discovery\n- Batch execution support\n- Built-in tools: search, calculate, get_time, summarize\n- JSON export for tool descriptions
527dcbfView on GitHubdocs: update README with anomaly detection and reasoning chains quickstarts\n\n- Add agents/anomaly to structure\n- Anomaly CLI and demos usage\n- Reasoning chains overview and test command
12653e4View on GitHubtest(agents): add comprehensive tests for reasoning chains\n\n- ChainOfThought tests (basic, confidence, format)\n- SelfReflection tests (confidence eval, weak step detection)\n- ReasoningChain tests (success, validation, error handling)\n- TreeOfThoughts tests (branching, navigation, path tracking)\n- 15 tests covering all core functionality
6e1b54cView on GitHubfeat(agents): add reasoning chains module\n\n- ChainOfThought for step-by-step reasoning\n- SelfReflection for confidence evaluation\n- ReasoningChain with validation\n- TreeOfThoughts for branching exploration\n- Formatted output for debugging
c7694a2View on GitHubfeat(examples): add advanced anomaly detection demo\n\n- Ensemble detection with multiple detectors\n- Drift detection example\n- Detector sensitivity analysis and comparison\n- Multi-metric evaluation (F1, precision, recall)
f61ffc3View on GitHub