Skip to content

Commit 7e405e1

Browse files
committed
docs: update README with v0.2.0 features and demo video
- Add demo video section with Loom link and thumbnail - Highlight v0.2.0 key features including Agent Self-Assembly System, Capability System, and Learning System - Update CLI usage examples with latest command options and flags - Add new agent management commands including delete and detailed listing - Include new plan execution options like --execute and --no-interactive
1 parent 8bada72 commit 7e405e1

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
A Ruby gem for building and running AI agents in a [plan-and-execute](https://blog.langchain.dev/planning-agents/#plan-and-execute) fashion. Agentic provides a simple command-line tool and library to build, manage, deploy, and run purpose-driven AI agents using OpenAI's LLM API.
44

5+
## What's New in v0.2.0
6+
7+
🚀 **Agent Self-Assembly System** - Agents can now dynamically construct themselves based on task requirements
8+
🎯 **Capability System** - Rich specification and versioning system for agent capabilities
9+
💾 **Persistent Agent Store** - Save and reuse agents across sessions
10+
🔧 **Enhanced CLI** - Comprehensive command-line interface with agent and capability management
11+
📊 **Learning System** - Agents improve over time through execution history analysis
12+
🎨 **Real-time Feedback** - Progress bars, spinners, and colorized output for better user experience
13+
14+
## Demo Video
15+
16+
<div>
17+
<a href="https://www.loom.com/share/278bc1749f68480fa8a0a3a6658a0291">
18+
<p>Agentic Gem v0.2.0 Release - Watch Video</p>
19+
</a>
20+
<a href="https://www.loom.com/share/278bc1749f68480fa8a0a3a6658a0291">
21+
<img style="max-width:300px;" src="https://cdn.loom.com/sessions/thumbnails/278bc1749f68480fa8a0a3a6658a0291-2146dcc57ee7b47f-full-play.gif">
22+
</a>
23+
</div>
24+
525
## Installation
626

727
Install the gem and add to the application's Gemfile by executing:
@@ -39,19 +59,24 @@ $ agentic plan "Generate a market research report on AI trends" # Creat
3959
$ agentic plan "Write a blog post about Ruby" --save plan.json # Save plan to file
4060
$ agentic plan "Research quantum computing" --output json # Output in JSON format
4161
$ agentic plan "Analyze market trends" --model gpt-4o # Use a specific model
62+
$ agentic plan "Create documentation" --execute # Create and execute immediately
63+
$ agentic plan "Research topics" --no-interactive # Skip interactive prompts
4264

4365
$ agentic execute --plan plan.json # Execute a saved plan
44-
$ agentic execute --async # Execute tasks asynchronously
66+
$ agentic execute --from-stdin # Read plan from stdin
4567
$ agentic execute --max-concurrency 5 # Limit concurrent tasks
68+
$ agentic execute --file results.json # Save results to specific file
4669

4770
# Agent Management
4871
$ agentic agent list # List available agents
72+
$ agentic agent list --detailed # List with detailed information
4973
$ agentic agent create "ResearchAgent" \ # Create a new agent
5074
--role="Research Assistant" \
5175
--purpose="Conduct thorough research" \
5276
--capabilities=text_generation,web_search
5377
$ agentic agent show "ResearchAgent" # Show agent details
5478
$ agentic agent build "ResearchAgent" # Build an agent from storage
79+
$ agentic agent delete "ResearchAgent" # Delete an agent
5580

5681
# Capability Management
5782
$ agentic capabilities list # List available capabilities

0 commit comments

Comments
 (0)