๐ฆ Self-adapting agent - one file.
Project description
๐ฆ DevDuck
Self-modifying AI agent that hot-reloads its own codeโbuilds itself as it runs.
One Python file that adapts to your environment, fixes itself, and expands capabilities at runtime. Deploy anywhere โ terminal, browser, cloud, or all at once in a unified mesh.
Learn more: https://duck.nyc
๐ฌ See It In Action
| Feature | What You'll See | Demo |
|---|---|---|
| ๐ฅ Hot-Reload | Agent detects code changes and restarts instantly | Watch |
| ๐ Web UI | Clean web interface with real-time streaming | Watch |
| ๐ ๏ธ Dynamic Tools | Save .py file in ./tools/ โ use instantly |
Watch |
| ๐ TCP Streaming | Connect via netcat, apps, or other agents | Watch |
| ๐ Zenoh P2P | Auto-discover & coordinate multiple DevDucks | Multi-terminal magic โจ |
| ๐ฌ Session Recording | Record, replay & resume agent sessions | Time-travel debugging ๐ฐ๏ธ |
| ๐ Ambient Mode | Background thinking while you're idle | Auto-explores topics ๐ง |
| ๐ IPC & Tray | macOS menu bar + Unix socket IPC | |
| ๐ฌ Ambient Overlay | Floating AI input with glassmorphism UI | Watch |
| ๐ Unified Mesh | Connect CLI + browser + cloud agents in one mesh | All agents, one network ๐ธ๏ธ |
| โ๏ธ Deploy CLI | devduck deploy --launch to AgentCore | One-command cloud deploy ๐ |
| ๐งฉ Browser Peers | Browser tabs join the mesh as first-class peers | Open mesh.html to join ๐ |
| ๐ macOS Control | Calendar, Mail, Safari, Finder, System & more | One tool for your Mac ๐ป |
| ๐ต Spotify | Full playback, playlists, discovery control | Music while you code ๐ถ |
| ๐ฌ Messaging | Telegram, WhatsApp, Slack auto-reply bots | Multi-platform chat ๐ฑ |
| ๐ฎ RL/ML Toolkit | Train RL agents, fine-tune LLMs with LoRA | Machine learning built-in ๐ง |
Quick Start
# Install & run
pipx install devduck && devduck
# With speech-to-speech capabilities (optional)
pipx install "devduck[speech]" && devduck
# One-shot query
devduck "create a REST API with FastAPI"
# Python API
python -c "import devduck; devduck('analyze this code')"
# Session recording (time-travel debugging)
devduck --record "analyze this codebase"
# โ Exports to /tmp/devduck/recordings/session-*.zip
# Resume from recorded session
devduck --resume session-20250202-123456.zip "continue where we left off"
# Deploy to AWS AgentCore
devduck deploy --launch
devduck deploy --name my-agent --tools "strands_tools:shell,editor" --launch
Requirements: Python 3.10-3.13, AWS credentials (or Ollama/Anthropic/GitHub/MLX)
Optional extras:
devduck[speech]- Real-time speech-to-speech conversations (Nova Sonic, OpenAI Realtime, Gemini Live)
Core Capabilities
| Feature | What It Does | How to Use |
|---|---|---|
| ๐ฅ Hot-Reload | Auto-restarts on code changes | Edit __init__.py โ saves โ auto-restart |
| ๐ ๏ธ Runtime Tools | Add/remove tools without restart | manage_tools(action="add", ...) |
| ๐ฆ Dynamic Loading | Install packages and load tools on-the-fly | install_tools(action="install_and_load", package="...") |
| ๐ง Auto-RAG | Remembers conversations via Knowledge Base | Set DEVDUCK_KNOWLEDGE_BASE_ID |
| ๐ Multi-Protocol | TCP, WebSocket, MCP, IPC servers | Auto-starts on ports 10001, 10002, 10003 |
| ๐ Zenoh P2P | Auto-discover & coordinate with other DevDucks | zenoh_peer(action="broadcast", message="...") |
| ๐ Unified Mesh | Connect CLI + browser + cloud agents | Auto-starts relay on port 10000 |
| โ๏ธ Deploy CLI | One-command AgentCore deployment | devduck deploy --launch |
| ๐ MCP Client | Connect to external MCP servers | Set MCP_SERVERS env var |
| ๐ฌ Session Recording | Record & replay entire sessions | devduck --record or session_recorder() |
| ๐พ State Time-Travel | Save/restore agent state | state_manager(action="export") |
| ๐ Ambient Mode | Background thinking when idle | DEVDUCK_AMBIENT_MODE=true or type ambient |
| ๐ Self-Improvement | Updates own system prompt | system_prompt(action="add_context", ...) |
| โ๏ธ AWS Deploy | One-command serverless | devduck deploy --launch |
| ๐ค Speech-to-Speech | Real-time voice conversations | pip install devduck[speech] |
| ๐ macOS Control | Calendar, Mail, Safari, Finder, System, Keychain & more | use_mac(action="calendar.events") |
| ๐ Apple Notes | Create, edit, search, export notes | apple_notes(action="list") |
| ๐ต Spotify | Full playback, search, playlists, discovery | use_spotify(action="now_playing") |
| ๐ฌ Telegram | Bot listener + full API access | telegram(action="start_listener") |
| ๐ฌ WhatsApp | Messaging via wacli (no Cloud API) | whatsapp(action="send_text", to="...", text="...") |
| ๐ฌ Slack | Socket Mode listener + messaging | slack(action="start_listener") |
| ๐ JSON-RPC | Generic RPC client (HTTP & WebSocket) | jsonrpc(method="getInfo", endpoint="...") |
| ๐ฎ RL/ML Toolkit | Train RL agents, fine-tune LLMs | rl(action="train", env_id="CartPole-v1") |
Developer Setup
git clone git@github.com:cagataycali/devduck.git
cd devduck
python3.13 -m venv .venv
source .venv/bin/activate
# Basic install
.venv/bin/pip3.13 install -e .
# With speech capabilities
.venv/bin/pip3.13 install -e ".[speech]"
devduck
Architecture
graph TB
A[User Input] -->|CLI/TCP/WS/MCP/IPC| B[DevDuck Core]
B -->|Auto RAG| C[Knowledge Base]
C -.->|Context Retrieval| B
B -->|Tool Calls| D[54+ Built-in Tools]
D --> E[shell/editor/calculator]
D --> F[GitHub/AgentCore]
D --> G[TCP/WebSocket/MCP/IPC]
D --> H[tray/ambient/cursor/clipboard]
D --> O[Telegram/WhatsApp/Slack]
D --> P[use_mac/apple_notes/spotify]
D --> Q[rl/jsonrpc/scraper]
B -->|Hot-reload| I[./tools/*.py + __init__.py]
I -.->|Load Instantly| D
B -->|Runtime| K[manage_tools/install_tools]
K -.->|Expand| D
B <-->|Zenoh P2P| L[Other DevDucks]
L -.->|Auto-discover| B
B <-->|Unified Mesh| M[Browser Peers + AgentCore]
M -.->|Ring Context| B
B -->|Deploy| N[devduck deploy โ AgentCore]
B -->|Response| J[User Output]
J -.->|Store Memory| C
style B fill:#e1f5ff
style C fill:#d4edda
style I fill:#fff3cd
style K fill:#ffe6cc
style L fill:#f0e6ff
style M fill:#ffe6f0
Self-adapting loop: Query โ RAG โ Tools โ Response โ Memory โ Hot-reload/Runtime-load โ Repeat
Model Setup
DevDuck auto-detects providers based on credentials:
Priority: Bedrock โ Anthropic โ OpenAI โ GitHub โ Gemini โ Cohere โ Writer โ Mistral โ LiteLLM โ LlamaAPI โ MLX โ Ollama
| Provider | API Key | Auto-Detected |
|---|---|---|
| Bedrock | AWS credentials | โ
If boto3 auth succeeds |
| Anthropic | ANTHROPIC_API_KEY |
โ If key present |
| OpenAI | OPENAI_API_KEY |
โ If key present |
| GitHub | GITHUB_TOKEN or PAT_TOKEN |
โ If key present |
| Gemini | GOOGLE_API_KEY or GEMINI_API_KEY |
โ If key present |
| Cohere | COHERE_API_KEY |
โ If key present |
| Writer | WRITER_API_KEY |
โ If key present |
| Mistral | MISTRAL_API_KEY |
โ If key present |
| LiteLLM | LITELLM_API_KEY |
โ If key present |
| LlamaAPI | LLAMAAPI_API_KEY |
โ If key present |
| MLX | No key needed | โ On Apple Silicon (M1/M2/M3) |
| Ollama | No key needed | โ Fallback if nothing else found |
Just set your API key - DevDuck handles the rest:
export ANTHROPIC_API_KEY=sk-ant-...
devduck # Auto-uses Anthropic
export OPENAI_API_KEY=sk-...
devduck # Auto-uses OpenAI
export GOOGLE_API_KEY=...
devduck # Auto-uses Gemini
Manual override:
export MODEL_PROVIDER=bedrock
export STRANDS_MODEL_ID=us.anthropic.claude-sonnet-4-20250514-v1:0
devduck
Tool Management
Runtime Tool Management
Add, remove, or reload tools while agent is running:
# List all loaded tools
manage_tools(action="list")
# Add tools from a package at runtime
manage_tools(action="add", package="strands_fun_tools", tool_names="cursor,clipboard,bluetooth")
# Remove tools you don't need
manage_tools(action="remove", tool_names="cursor,clipboard")
# Reload specific tools after editing
manage_tools(action="reload", tool_names="shell,editor")
# Reload all tools (restarts agent)
manage_tools(action="reload")
# Load custom tool from file
manage_tools(action="add", tool_path="./my_custom_tool.py")
Dynamic Package Installation
Install Python packages and load their tools at runtime:
# Discover available tools before loading
install_tools(action="list_available", package="strands-fun-tools", module="strands_fun_tools")
# Install package and load all tools
install_tools(action="install_and_load", package="strands-agents-tools", module="strands_tools")
# Install and load specific tools only
install_tools(
action="install_and_load",
package="strands-fun-tools",
module="strands_fun_tools",
tool_names=["clipboard", "cursor", "bluetooth"]
)
# Load tools from already installed package
install_tools(action="load", module="strands_tools", tool_names=["shell", "calculator"])
# List currently loaded tools
install_tools(action="list_loaded")
Static Tool Configuration
Format: package1:tool1,tool2;package2:tool3,tool4
# Minimal (shell + editor only)
export DEVDUCK_TOOLS="strands_tools:shell,editor"
# Dev essentials
export DEVDUCK_TOOLS="strands_tools:shell,editor,file_read,file_write,calculator"
# Full stack + GitHub
export DEVDUCK_TOOLS="devduck.tools:tcp,websocket,mcp_server,use_github;strands_tools:shell,editor,file_read"
devduck
Hot-Reload Tools from Directory
Create ./tools/weather.py:
from strands import tool
import requests
@tool
def weather(city: str) -> str:
"""Get weather for a city."""
r = requests.get(f"https://wttr.in/{city}?format=%C+%t")
return r.text
Enable directory auto-loading:
export DEVDUCK_LOAD_TOOLS_FROM_DIR=true
devduck
# Save weather.py โ use instantly (no restart needed)
Default: Directory loading is OFF. Use manage_tools() or install_tools() for explicit control.
Speech-to-Speech (Optional)
Install speech capabilities:
pip install "devduck[speech]"
Real-time voice conversations with multiple providers:
# Start speech session with Nova Sonic (AWS Bedrock)
speech_to_speech(action="start", provider="novasonic")
# Start with OpenAI Realtime API
speech_to_speech(action="start", provider="openai")
# Start with Gemini Live
speech_to_speech(action="start", provider="gemini_live")
# Custom voice and settings
speech_to_speech(
action="start",
provider="novasonic",
model_settings={
"provider_config": {"audio": {"voice": "matthew"}},
"client_config": {"region": "us-east-1"}
}
)
# Stop session
speech_to_speech(action="stop", session_id="speech_20250126_140000")
# Check status
speech_to_speech(action="status")
# List conversation histories
speech_to_speech(action="list_history")
# List available audio devices
speech_to_speech(action="list_audio_devices")
Supported Providers:
- Nova Sonic (AWS Bedrock): 11 voices (English, French, Italian, German, Spanish)
- OpenAI Realtime API: GPT-4o Realtime models
- Gemini Live: Native audio streaming
Environment Variables:
OPENAI_API_KEY- For OpenAI RealtimeGOOGLE_API_KEYorGEMINI_API_KEY- For Gemini Live- AWS credentials - For Nova Sonic (boto3 default credential chain)
Features:
- Background execution (parent agent stays responsive)
- Tool inheritance from parent agent
- Conversation history saved automatically
- Natural interruption with VAD
- Custom audio device selection
MCP Integration
As MCP Server (Expose DevDuck)
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"devduck": {
"command": "uvx",
"args": ["devduck", "--mcp"]
}
}
}
Or start HTTP MCP server:
mcp_server(action="start", port=8000, stateless=True)
# Connect at: http://localhost:8000/mcp
Modes: --mcp (stdio for Claude Desktop) | http (background server) | stateless=True (multi-node)
As MCP Client (Load External Servers)
Expand capabilities by loading tools from external MCP servers:
export MCP_SERVERS='{
"mcpServers": {
"strands-docs": {"command": "uvx", "args": ["strands-agents-mcp-server"]},
"remote": {"url": "https://api.example.com/mcp", "headers": {"Auth": "Bearer token"}},
"custom": {"command": "python", "args": ["my_server.py"]}
}
}'
devduck
Supported transports: stdio (command/args/env) | HTTP (url/headers) | SSE (url with /sse path)
Tool prefixing: Each server's tools get prefixed (e.g., strands-docs_search_docs)
Zenoh Peer-to-Peer Networking
Auto-discover and coordinate multiple DevDuck instances across terminals or networks.
How It Works
- Each DevDuck joins a Zenoh peer network
- Multicast scouting (224.0.0.224:7446) auto-discovers peers on local network
- Peers exchange heartbeats to maintain presence awareness
- Commands can be broadcast to ALL peers or sent to specific peers
- Responses stream back in real-time
Quick Start
# Terminal 1: Start DevDuck (Zenoh enabled by default)
devduck
# ๐ฆ โ Zenoh peer: hostname-abc123
# Terminal 2: Start another DevDuck
devduck
# ๐ฆ โ Zenoh peer: hostname-def456
# Auto-discovers Terminal 1!
# Terminal 1: See discovered peers
๐ฆ zenoh_peer(action="list_peers")
# Terminal 1: Broadcast to ALL DevDucks
๐ฆ zenoh_peer(action="broadcast", message="git status")
# Both terminals execute and stream responses!
# Send to specific peer
๐ฆ zenoh_peer(action="send", peer_id="hostname-def456", message="what files are here?")
Cross-Network Connections
Connect DevDuck instances across different networks:
# Machine A (office): Listen for remote connections
export ZENOH_LISTEN="tcp/0.0.0.0:7447"
devduck
# Machine B (home): Connect to office
export ZENOH_CONNECT="tcp/office.example.com:7447"
devduck
# Now they can communicate!
๐ฆ zenoh_peer(action="broadcast", message="sync all repos")
Use Cases
| Scenario | Command | Description |
|---|---|---|
| Multi-terminal ops | broadcast "git pull && npm install" |
Run on all instances |
| Distributed tasks | broadcast "analyze ./src" |
Parallel analysis |
| Peer monitoring | list_peers |
See all active DevDucks |
| Direct messaging | send peer_id="..." message="..." |
Task specific instance |
| Cross-network | Set ZENOH_CONNECT |
Connect home โ office |
Actions
# Start Zenoh networking (auto-starts by default)
zenoh_peer(action="start")
# Stop Zenoh
zenoh_peer(action="stop")
# Check status and peer count
zenoh_peer(action="status")
# List all discovered peers
zenoh_peer(action="list_peers")
# Broadcast to ALL peers (waits for responses)
zenoh_peer(action="broadcast", message="your command", wait_time=60)
# Send to specific peer
zenoh_peer(action="send", peer_id="hostname-abc123", message="your command", wait_time=120)
# Start with remote connection
zenoh_peer(action="start", connect="tcp/remote.example.com:7447")
# Start listening for remote connections
zenoh_peer(action="start", listen="tcp/0.0.0.0:7447")
Environment Variables
| Variable | Default | Description |
|---|---|---|
DEVDUCK_ENABLE_ZENOH |
true |
Auto-start Zenoh on launch |
ZENOH_CONNECT |
- | Remote endpoint(s) to connect to |
ZENOH_LISTEN |
- | Endpoint(s) to listen on for remote connections |
Features
- Zero Config: Just start multiple DevDucks - they find each other
- Real-time Streaming: Responses stream as they're generated
- Peer Awareness: Dynamic context injection shows connected peers
- Cross-Network: Connect instances across different networks
- Fault Tolerant: Peers auto-detect disconnections (15s timeout)
Unified Mesh (CLI + Browser + Cloud)
Connect ALL agent types โ terminal DevDucks, browser tabs, and cloud-deployed agents โ into a single unified network with shared context.
How It Works
- Mesh Relay auto-starts on port 10000 (WebSocket)
- File-based Registry (
/tmp/devduck/mesh_registry.json) tracks all agents - Browser peers connect via
mesh.htmland register as first-class mesh participants - Ring context is shared bidirectionally: CLI writes โ browser sees it, browser writes โ CLI sees it
- AgentCore agents (deployed to AWS) appear alongside local agents
Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Unified Mesh โ
โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโโโโโโโ โ
โ โ Terminal โ โ Browser โ โ AgentCore โ โ
โ โ DevDuck โ โ Tab(s) โ โ (Cloud) โ โ
โ โ (Zenoh) โ โ (WS) โ โ (AWS) โ โ
โ โโโโโโฌโโโโโโ โโโโโโฌโโโโโโ โโโโโโโโฌโโโโโโโโ โ
โ โ โ โ โ
โ โโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโ โ
โ โ โ
โ โโโโโโโโโโโโดโโโโโโโโโโโ โ
โ โ mesh_registry.json โ โ
โ โ (file-based, TTL) โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ Ring Context (shared memory) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Port Allocation
| Port | Service | Description |
|---|---|---|
| 10000 | Mesh Relay | AgentCore proxy + browser gateway |
| 10001 | WebSocket | Per-message DevDuck server |
| 10002 | TCP | Raw socket server |
| 10003 | MCP HTTP | Model Context Protocol |
| 10004 | IPC | Reserved for Unix socket gateway |
Quick Start
# Terminal: Start DevDuck (mesh auto-starts)
devduck
# ๐ฆ โ AgentCore proxy: ws://localhost:10000
# ๐ฆ โ Zenoh peer: hostname-abc123
# Browser: Open mesh.html โ auto-connects to ws://localhost:10000
# Browser agents appear in zenoh peer list!
# See all agents in the mesh
๐ฆ unified_mesh(action="list_all")
# Route to any agent type
๐ฆ unified_mesh(action="route", target="browser:abc123", message="hello")
๐ฆ unified_mesh(action="route", target="hostname-def456", message="git status")
Mesh Registry
The file-based registry provides crash-safe agent discovery with zero race conditions:
from devduck.tools.mesh_registry import registry
# All reads are lock-free (read whatever's on disk)
agents = registry.get_all() # All live agents
zenoh = registry.get_by_type("zenoh") # Filter by type
agent = registry.get_agent("my-id") # Single lookup
# Writes use fcntl.flock() + atomic rename
registry.register("my-agent", "local", {"name": "test"})
registry.heartbeat("my-agent") # Update last_seen
registry.unregister("my-agent") # Graceful shutdown
# Stale entries auto-expire (30s TTL) โ crash-safe
print(registry.summary())
Ring Context
Shared memory across all agents:
# Add to ring (auto-broadcasts to browsers)
unified_mesh(action="add_ring", agent_id="devduck", text="Working on file analysis")
# Get recent ring entries
unified_mesh(action="get_ring", max_entries=20)
# Ring is injected into every agent query as dynamic context
AgentCore Deployment (Deploy CLI)
One-command deployment of DevDuck to Amazon Bedrock AgentCore:
Quick Deploy
# Configure and deploy with defaults
devduck deploy --launch
# Custom agent
devduck deploy --name code-reviewer \
--tools "strands_tools:shell,editor,file_read" \
--model "us.anthropic.claude-sonnet-4-20250514-v1:0" \
--system-prompt "You are a senior code reviewer" \
--launch
# Configure only (don't launch yet)
devduck deploy --name my-agent
# Launch separately
agentcore launch -a my_agent --auto-update-on-conflict
Deploy Options
devduck deploy [OPTIONS]
Options:
--name, -n Agent name (default: devduck)
--tools, -t Tool config (e.g., "strands_tools:shell,editor")
--model, -m Model ID override
--region, -r AWS region (default: us-west-2)
--launch Auto-launch after configure
--system-prompt, -s Custom system prompt
--idle-timeout Idle timeout seconds (default: 900)
--max-lifetime Max lifetime seconds (default: 28800)
--no-memory Disable AgentCore memory (STM)
--no-otel Disable OpenTelemetry
--env KEY=VALUE Additional env vars (repeatable)
--force-rebuild Force rebuild dependencies
Manage Deployed Agents
# List all deployed agents
devduck list
# Check agent status
devduck status --name my-agent
# Invoke a deployed agent
devduck invoke "analyze this code" --name my-agent
# Invoke by agent ID directly
devduck invoke "hello" --agent-id abc123-def456
Proxy Integration
Deployed agents automatically appear in the unified mesh:
# DevDuck auto-starts proxy on ws://localhost:10000
# Open mesh.html to see ALL agents (local + cloud)
# WebSocket protocol:
# {"type": "list_agents"} โ See all agents
# {"type": "invoke", "agent_id": "...", "prompt": "..."} โ Invoke any agent
# {"type": "get_ring"} โ Get ring context
Messaging Integrations (Telegram, WhatsApp, Slack)
DevDuck can listen and auto-reply on Telegram, WhatsApp, and Slack โ each incoming message spawns a fresh DevDuck instance with full tool access.
Telegram
export TELEGRAM_BOT_TOKEN="your-bot-token"
export STRANDS_TELEGRAM_AUTO_REPLY=true
# Optional: restrict to specific users
export TELEGRAM_ALLOWED_USERS="149632499,cagataycali"
# Start listening for messages
telegram(action="start_listener")
# Send messages
telegram(action="send_message", chat_id="123456", text="Hello!")
telegram(action="send_photo", chat_id="123456", file_path="/path/to/image.png")
telegram(action="send_poll", chat_id="123456", question="Tabs or spaces?", options=["Tabs", "Spaces"])
# Get bot info
telegram(action="get_me")
Uses wacli โ no Cloud API needed, runs via WhatsApp Web protocol.
brew install steipete/tap/wacli && wacli auth
export STRANDS_WHATSAPP_AUTO_REPLY=true
# Start listening
whatsapp(action="start_listener")
# Send messages
whatsapp(action="send_text", to="+1234567890", text="Hello from DevDuck!")
whatsapp(action="send_file", to="+1234567890", file_path="/path/to/doc.pdf")
# Search & browse
whatsapp(action="chats_list")
whatsapp(action="messages_search", query="meeting notes")
whatsapp(action="contacts_search", query="John")
Slack
export SLACK_BOT_TOKEN="xoxb-..."
export SLACK_APP_TOKEN="xapp-..."
export STRANDS_SLACK_AUTO_REPLY=true
# Start Socket Mode listener
slack(action="start_listener")
# Send messages & react
slack(action="send_message", channel="C123", text="Hello!")
slack(action="send_message", channel="C123", text="Reply", thread_ts="1234.5678")
slack(action="add_reaction", channel="C123", timestamp="1234.5678", emoji="thumbsup")
# API passthrough
slack(action="conversations_list")
macOS Integration (use_mac + Apple Notes)
One tool to control your entire Mac โ Calendar, Reminders, Mail, Contacts, Safari, Finder, System Events, Shortcuts, Messages, Music, Keychain, and raw AppleScript/JXA.
# Calendar
use_mac(action="calendar.events", days=7)
use_mac(action="calendar.create", title="Meeting", start="2026-03-01 10:00", end="2026-03-01 11:00")
# Reminders
use_mac(action="reminders.create", title="Buy groceries", due_date="2026-03-02", priority=1)
use_mac(action="reminders.list", list_name="Work")
# Mail
use_mac(action="mail.send", to="user@example.com", subject="Hello", body="Hi there!")
use_mac(action="mail.unread")
# Safari
use_mac(action="safari.tabs")
use_mac(action="safari.open", url="https://strandsagents.com")
use_mac(action="safari.read") # Read current page text
# System
use_mac(action="system.notify", text="Task complete!", title="DevDuck")
use_mac(action="system.clipboard.get")
use_mac(action="system.say", text="Hello world", voice="Samantha")
use_mac(action="system.screenshot", path="/tmp/screenshot.png")
use_mac(action="system.volume", level=50)
use_mac(action="system.dark_mode", enable=True)
# Finder
use_mac(action="finder.selection")
use_mac(action="finder.tag", path="/path/to/file", tags="important,review")
# Messages & Music
use_mac(action="messages.send", to="+1234567890", text="Hello!")
use_mac(action="music.now_playing")
# Keychain
use_mac(action="keychain.get", service="MyApp", account="user@example.com")
use_mac(action="keychain.set", service="MyApp", account="user@example.com", password="secret")
# Shortcuts
use_mac(action="shortcuts.run", name="My Shortcut", input_text="hello")
# Raw AppleScript / JXA
use_mac(action="applescript", script='tell app "Finder" to get name of every disk')
use_mac(action="jxa", script='Application("System Events").currentUser().name()')
Apple Notes
# List & search
apple_notes(action="list")
apple_notes(action="list", folder="Work")
apple_notes(action="search", query="meeting")
# Create & edit
apple_notes(action="create", title="Meeting Notes", body="## Agenda\n- Review Q1")
apple_notes(action="edit", note_id="x-coredata://...", body="Updated content")
apple_notes(action="append", note_id="x-coredata://...", body="\n## New section")
# Organize & export
apple_notes(action="move", note_id="x-coredata://...", target_folder="Archive")
apple_notes(action="export", output_dir="/tmp/my_notes")
apple_notes(action="folders")
Spotify Control
Full Spotify playback, search, playlists, queue, library, and discovery control.
export SPOTIFY_CLIENT_ID="your-client-id"
export SPOTIFY_CLIENT_SECRET="your-client-secret"
# Playback
use_spotify(action="now_playing")
use_spotify(action="play")
use_spotify(action="pause")
use_spotify(action="next")
use_spotify(action="volume", volume=50)
use_spotify(action="shuffle", shuffle_state=True)
# Search & play
use_spotify(action="search", query="Bohemian Rhapsody", search_type="track")
use_spotify(action="queue.add", uri="spotify:track:...")
# Playlists
use_spotify(action="playlists")
use_spotify(action="playlist.create", name="DevDuck Vibes", description="Coding music")
use_spotify(action="playlist.add", playlist_id="...", uris="spotify:track:...,spotify:track:...")
# Discovery
use_spotify(action="top_tracks", time_range="short_term")
use_spotify(action="recommendations", seed_genres="electronic,ambient", limit=10)
use_spotify(action="recent")
JSON-RPC Client
Generic JSON-RPC client supporting HTTP and WebSocket transports.
# HTTP endpoint
jsonrpc(method="getInfo", endpoint="https://api.example.com/rpc")
# WebSocket endpoint
jsonrpc(method="subscribe", endpoint="wss://api.example.com/ws")
# With parameters
jsonrpc(method="getData", params=["arg1", {"key": "value"}], endpoint="https://api.example.com/rpc")
# With authentication (secure - uses env var)
jsonrpc(method="getPrivateData", endpoint="https://api.example.com/rpc", auth_env_var="SERVICE_API_KEY", auth_type="Bearer")
Reinforcement Learning & ML Toolkit
Train RL agents, run hyperparameter sweeps, fine-tune LLMs โ all from DevDuck.
# Train an RL agent
rl(action="train", env_id="CartPole-v1", algorithm="PPO", total_timesteps=50000)
# Evaluate a trained model
rl(action="eval", env_id="CartPole-v1", model_path="rl_models/.../best_model")
# Watch agent play (with video recording)
rl(action="play", env_id="CartPole-v1", model_path="rl_models/.../best_model", record_video=True)
# Hyperparameter sweep
rl(action="sweep", env_id="LunarLander-v3", n_trials=8)
# Create custom environment
rl(action="create_env", env_name="my_env", reward_code="...", obs_dim=4, act_dim=2, act_type="discrete")
# Fine-tune LLM with LoRA
rl(action="finetune", model_id="Qwen/Qwen2.5-0.5B", dataset_id="tatsu-lab/alpaca", method="lora")
# Supervised Fine-Tuning with TRL
rl(action="sft", model_id="meta-llama/Llama-3.2-1B", dataset_path="./data.jsonl")
# Inference on fine-tuned model
rl(action="inference", model_path="./ml_models/my_model", prompt="Hello world")
# List saved models
rl(action="list_models")
Advanced Features
๐ฌ Session Recording (Time-Travel Debugging)
Record entire sessions for replay, debugging, and state restoration:
# CLI: Start with recording enabled
devduck --record
devduck --record "analyze this codebase"
# Resume from recorded session
devduck --resume ~/Desktop/session-20250202-123456.zip
devduck --resume session.zip "continue where we left off"
# Resume from specific snapshot
devduck --resume session.zip --snapshot 2 "what was I working on?"
Interactive recording:
๐ฆ record # Toggle recording on/off
๐ฆ session_recorder(action="start")
๐ฆ session_recorder(action="snapshot", description="before refactor")
๐ฆ session_recorder(action="stop") # Exports to /tmp/devduck/recordings/
Captures three layers:
- sys: OS-level events (file I/O, HTTP requests)
- tool: All tool calls and results
- agent: Messages, decisions, state changes
Python API for session analysis:
from devduck import load_session, resume_session, list_sessions
# List all recordings
sessions = list_sessions()
# [{'name': 'session-20250202-123456.zip', 'size_kb': 45.2, ...}]
# Load and analyze a session
session = load_session("~/Desktop/session-20250202-123456.zip")
print(session) # LoadedSession(events=156, snapshots=3, duration=342.5s)
# Get events by layer
tool_calls = session.get_events_by_layer("tool")
file_ops = session.get_events_by_type("file.open")
# Resume from snapshot (restores conversation history!)
result = session.resume_from_snapshot(2, agent=devduck.agent)
print(f"Restored {result['messages_restored']} messages")
# Resume and continue with new query
result = session.resume_and_continue(2, "what files did we modify?", devduck.agent)
print(result['agent_result'])
# Replay with callback
def on_event(event, idx):
print(f"[{idx}] {event.layer}/{event.event_type}: {event.data}")
session.replay_events(callback=on_event)
Session file structure (ZIP):
session-20250202-123456.zip
โโโ events.jsonl # All events in JSON Lines format
โโโ snapshots.json # State snapshots with conversation history
โโโ metadata.json # Session info (duration, hostname, etc.)
โโโ session.pkl # Serialized state for full restore (dill/pickle)
Recordings saved to: /tmp/devduck/recordings/
๐ Ambient Mode (Background Thinking)
Continue working in the background while you're idle:
# Enable via environment
export DEVDUCK_AMBIENT_MODE=true
devduck
# Or toggle in REPL
๐ฆ ambient # Toggle standard ambient mode
๐ฆ auto # Toggle autonomous mode
Standard Mode: Runs up to 3 iterations when you go idle (30s)
# Configuration
export DEVDUCK_AMBIENT_IDLE_SECONDS=30 # Wait before starting
export DEVDUCK_AMBIENT_MAX_ITERATIONS=3 # Max background iterations
export DEVDUCK_AMBIENT_COOLDOWN=60 # Seconds between runs
Autonomous Mode: Runs continuously until done or stopped
export DEVDUCK_AUTONOMOUS_MAX_ITERATIONS=50 # Higher limit
export DEVDUCK_AUTONOMOUS_COOLDOWN=10 # Faster cycles
How it works:
- You go idle (30s default)
- DevDuck continues exploring the last topic
- Background work streams with ๐ prefix
- When you return, findings are injected into your next query
- Agent can signal completion with
[AMBIENT_DONE]
Programmatic control:
# Enable standard ambient mode
devduck.ambient.start()
# Enable autonomous mode
devduck.ambient.start(autonomous=True)
# Stop ambient mode
devduck.ambient.stop()
# Check status
devduck.status()['ambient_mode']
State Management (Time-Travel)
Save and restore agent state for reproducibility:
# Export current state
state_manager(action="export", metadata={"note": "before refactor"})
# List saved states
state_manager(action="list")
# Load and display state
state_manager(action="load", state_file="~/.devduck/states/devduck_20250118_150000.pkl")
# Resume from state (ephemeral - doesn't mutate parent)
state_manager(
action="resume",
state_file="~/.devduck/states/devduck_20250118_150000.pkl",
query="continue the analysis from where we left off"
)
# Modify state metadata
state_manager(
action="modify",
state_file="path/to/state.pkl",
metadata={"tags": ["important", "refactor"]}
)
# Delete state
state_manager(action="delete", state_file="path/to/state.pkl")
States saved to: ~/.devduck/states/
System Prompt Management
Self-improvement - agent updates its own system prompt:
# View current system prompt
system_prompt(action="view")
# Add new context (appends to prompt)
system_prompt(action="add_context", context="New learning: Always use FastAPI for APIs")
# Update entire prompt
system_prompt(action="update", prompt="You are a specialized DevOps agent...")
# Sync to GitHub (persist across deployments)
system_prompt(
action="update",
prompt="Updated system prompt with new learnings...",
repository="cagataycali/devduck"
)
# Reset to default
system_prompt(action="reset")
Pattern: Learn โ Add context โ Sync to GitHub โ Persist forever
Knowledge Base (Auto-RAG)
Automatic memory across sessions:
export DEVDUCK_KNOWLEDGE_BASE_ID=your_kb_id
devduck
How it works:
- Before each query: Retrieves relevant context from KB
- After each response: Stores conversation for future reference
- No manual tool calls needed - fully automatic
Manual storage:
store_in_kb(
content="Important information to remember...",
title="Project Context",
knowledge_base_id="optional-kb-id"
)
Sub-Agent Creation
Delegate tasks to specialized agents via GitHub Actions:
# Create sub-agent with specific model and tools
create_subagent(
repository="owner/repo",
workflow_id="agent.yml",
task="Analyze this dataset and provide insights",
model="us.anthropic.claude-sonnet-4-20250514-v1:0",
provider="bedrock",
max_tokens=60000,
tools="file_read,python_repl,calculator,http_request"
)
# Custom system prompt for specialized behavior
create_subagent(
repository="owner/repo",
workflow_id="agent.yml",
task="Review code and suggest improvements",
tools="file_read,editor,shell",
system_prompt="You are a senior code reviewer focused on best practices"
)
# Check sub-agent status
create_subagent(action="status", repository="owner/repo", workflow_id="agent.yml", run_id="12345")
# List recent runs
create_subagent(action="list", repository="owner/repo", workflow_id="agent.yml")
๐ All Built-in Tools (54 total)
DevDuck Core (33 tools)
system_prompt- Update agent's system prompt (GitHub sync support)store_in_kb- Store content in Bedrock Knowledge Basestate_manager- Save/restore agent state (time-travel)session_recorder- ๐ฌ Record sessions for replay and debuggingtcp- TCP server with real-time streamingwebsocket- WebSocket server with concurrent messagingipc- Unix socket IPC server for local processesmcp_server- Expose as MCP server (HTTP/stdio)zenoh_peer- Peer-to-peer networking with auto-discoveryagentcore_proxy- ๐ Unified mesh relay (Zenoh + AgentCore + browser peers)unified_mesh- Single source of truth for all agent types + ring contextmesh_registry- File-based agent discovery with fcntl locking and TTLambient_mode- Control ambient/autonomous background thinkinginstall_tools- Install packages and load tools at runtimecreate_subagent- Spawn sub-agents via GitHub Actionsuse_github- GitHub GraphQL API operationstray- System tray app control (macOS)ambient- Ambient AI input overlay (macOS)agentcore_config- Configure & launch on Bedrock AgentCoreagentcore_invoke- Invoke deployed AgentCore agentsagentcore_logs- View CloudWatch logs from agentsagentcore_agents- List/manage agent runtimesmanage_tools- Runtime tool add/remove/reloadview_logs- View/search/clear DevDuck logsspeech_to_speech- Real-time speech-to-speech conversations (optional - install withpip install devduck[speech])use_mac- ๐ Unified macOS system control (Calendar, Reminders, Mail, Contacts, Safari, Finder, System Events, Shortcuts, Messages, Music, Keychain, AppleScript/JXA)apple_notes- ๐ Apple Notes management (create, read, edit, delete, search, move, export)use_spotify- ๐ต Full Spotify control (playback, search, playlists, queue, library, devices, discovery)telegram- ๐ฌ Telegram bot integration (listener, messaging, inline keyboards, polls, media)whatsapp- ๐ฌ WhatsApp integration via wacli (messaging, contacts, groups, media - no Cloud API needed)slack- ๐ฌ Slack integration (Socket Mode listener, messaging, reactions, file uploads)jsonrpc- ๐ Generic JSON-RPC client for any RPC service (HTTP & WebSocket transports)rl- ๐ฎ Reinforcement Learning & ML toolkit (train/eval/play RL agents with Stable-Baselines3, fine-tune LLMs with LoRA/SFT)
Strands Tools (13 tools)
shell- Interactive shell with PTY supporteditor- File editing (view/create/replace/insert/undo)file_read- Multi-file reading with search modesfile_write- Write content to filescalculator- SymPy-powered math (solve/derive/integrate)image_reader- Read images for Converse APIuse_agent- Nested agent with different modelload_tool- Load custom tools from Python filesenvironment- Environment variable managementmcp_client- Connect to external MCP servers autonomouslyretrieve- Bedrock Knowledge Base retrievalspeak- Text-to-speech (macOSsayor AWS Polly)
Strands Fun Tools (6 tools - macOS)
listen- Background speech transcription (Whisper)cursor- Mouse & keyboard controlclipboard- Clipboard monitoring & controlscreen_reader- OCR & UI element detectionbluetooth- BLE scanning and GATT operationsyolo_vision- Object detection with YOLO
Community Tools (./tools/)
fetch_github_tool- Fetch and load tools from GitHub reposgist- Comprehensive GitHub Gist management (create/update/fork/star/comment)scraper- HTML/XML parsing with BeautifulSoup4add_comment- Add comments to GitHub issues/PRslist_issues- List GitHub repository issueslist_pull_requests- List GitHub repository PRs
Plus: Hot-reload tools from ./tools/ directory when DEVDUCK_LOAD_TOOLS_FROM_DIR=true
Hot-Reload Example
# ./tools/weather.py
from strands import tool
import requests
@tool
def weather(city: str) -> str:
"""Get weather for a city."""
r = requests.get(f"https://wttr.in/{city}?format=%C+%t")
return r.text
Save โ use instantly:
๐ฆ weather(city="Tokyo")
# Clear sky +15ยฐC
No restart. No configuration. Just works.
Access Methods
| Protocol | Endpoint | Test Command | Use Case |
|---|---|---|---|
| CLI | Terminal | devduck "query" |
Interactive/one-shot |
| Python | Import | import devduck; devduck("query") |
Script integration |
| Mesh Relay | localhost:10000 |
Open mesh.html |
Unified mesh (browser + all agents) |
| WebSocket | localhost:10001 |
wscat -c ws://localhost:10001 |
Browser/async apps |
| TCP | localhost:10002 |
nc localhost 10002 |
Network clients |
| MCP | localhost:10003/mcp |
Add to Claude Desktop | MCP clients |
| IPC | /tmp/devduck_main.sock |
nc -U /tmp/devduck_main.sock |
Local processes |
CLI Commands
# Interactive REPL
devduck
# One-shot query
devduck "your query here"
# MCP stdio mode (for Claude Desktop integration)
devduck --mcp
# Deploy to AgentCore
devduck deploy --launch
devduck deploy --name my-agent --tools "strands_tools:shell,editor" --launch
# Manage deployed agents
devduck list # List all agents
devduck status --name my-agent # Check status
devduck invoke "hello" --name my-agent # Invoke agent
# Session recording
devduck --record # Start with recording enabled
devduck --record "do something" # Record a one-shot query
# Resume from recorded session
devduck --resume session.zip # Resume from latest snapshot
devduck --resume session.zip "continue" # Resume and run new query
devduck --resume session.zip --snapshot 2 "continue" # Resume from specific snapshot
REPL Commands
| Command | Description |
|---|---|
exit / quit / q |
Exit DevDuck |
ambient |
Toggle standard ambient mode |
auto / autonomous |
Toggle autonomous mode |
record |
Toggle session recording |
!<command> |
Execute shell command (e.g., !ls -la) |
status |
Check agent status |
Custom ports:
export DEVDUCK_TCP_PORT=10002 DEVDUCK_WS_PORT=10001 DEVDUCK_MCP_PORT=10003 DEVDUCK_AGENTCORE_PROXY_PORT=10000
devduck
Disable servers:
export DEVDUCK_ENABLE_TCP=false DEVDUCK_ENABLE_MCP=false
devduck
Configuration
| Variable | Default | Description |
|---|---|---|
| Model | ||
MODEL_PROVIDER |
Auto | Manual override: bedrock, anthropic, openai, github, gemini, cohere, writer, mistral, litellm, llamaapi, mlx, ollama |
STRANDS_MODEL_ID |
Auto | Model name (e.g., claude-sonnet-4, gpt-4o, qwen3:1.7b) |
| Provider API Keys | ||
ANTHROPIC_API_KEY |
- | Anthropic API key (auto-detected) |
OPENAI_API_KEY |
- | OpenAI API key (auto-detected) |
GOOGLE_API_KEY / GEMINI_API_KEY |
- | Google Gemini API key (auto-detected) |
GITHUB_TOKEN / PAT_TOKEN |
- | GitHub token for GitHub Models (auto-detected) |
COHERE_API_KEY |
- | Cohere API key (auto-detected) |
WRITER_API_KEY |
- | Writer API key (auto-detected) |
MISTRAL_API_KEY |
- | Mistral API key (auto-detected) |
LITELLM_API_KEY |
- | LiteLLM API key (auto-detected) |
LLAMAAPI_API_KEY |
- | LlamaAPI key (auto-detected) |
| Tools | ||
DEVDUCK_TOOLS |
54 tools | Format: package1:tool1,tool2;package2:tool3 |
DEVDUCK_LOAD_TOOLS_FROM_DIR |
false |
Auto-load from ./tools/ directory |
| Memory | ||
DEVDUCK_KNOWLEDGE_BASE_ID |
- | Bedrock KB ID for auto-RAG |
SYSTEM_PROMPT |
- | Additional system prompt content |
| MCP | ||
MCP_SERVERS |
- | JSON config for external MCP servers |
| Servers | ||
DEVDUCK_TCP_PORT |
10002 |
TCP server port |
DEVDUCK_WS_PORT |
10001 |
WebSocket server port |
DEVDUCK_MCP_PORT |
10003 |
MCP server port |
DEVDUCK_AGENTCORE_PROXY_PORT |
10000 |
Mesh relay / AgentCore proxy port |
DEVDUCK_IPC_SOCKET |
/tmp/devduck_main.sock |
IPC socket path |
DEVDUCK_ENABLE_TCP |
false |
Enable TCP server |
DEVDUCK_ENABLE_WS |
true |
Enable WebSocket server |
DEVDUCK_ENABLE_MCP |
false |
Enable MCP server |
DEVDUCK_ENABLE_IPC |
false |
Enable IPC server |
DEVDUCK_ENABLE_ZENOH |
true |
Enable Zenoh peer-to-peer |
DEVDUCK_ENABLE_AGENTCORE_PROXY |
true |
Enable unified mesh relay |
ZENOH_CONNECT |
- | Remote Zenoh endpoint(s) to connect to |
ZENOH_LISTEN |
- | Zenoh endpoint(s) to listen on |
| Ambient Mode | ||
DEVDUCK_AMBIENT_MODE |
false |
Enable ambient mode on startup |
DEVDUCK_AMBIENT_IDLE_SECONDS |
30 |
Seconds idle before ambient starts |
DEVDUCK_AMBIENT_MAX_ITERATIONS |
3 |
Max iterations in standard mode |
DEVDUCK_AMBIENT_COOLDOWN |
60 |
Seconds between ambient runs |
DEVDUCK_AUTONOMOUS_MAX_ITERATIONS |
50 |
Max iterations in autonomous mode |
DEVDUCK_AUTONOMOUS_COOLDOWN |
10 |
Seconds between autonomous runs |
| Speech | ||
BIDI_MODEL_ID |
Provider default | Override bidi model (e.g., amazon.nova-2-sonic-v1:0) |
| Messaging | ||
TELEGRAM_BOT_TOKEN |
- | Telegram bot token from @BotFather |
STRANDS_TELEGRAM_AUTO_REPLY |
false |
Enable auto-reply on Telegram |
TELEGRAM_ALLOWED_USERS |
- | Comma-separated user IDs/usernames allowlist |
SLACK_BOT_TOKEN |
- | Slack bot token (xoxb-...) |
SLACK_APP_TOKEN |
- | Slack app token for Socket Mode (xapp-...) |
STRANDS_SLACK_AUTO_REPLY |
false |
Enable auto-reply on Slack |
STRANDS_WHATSAPP_AUTO_REPLY |
false |
Enable auto-reply on WhatsApp |
WHATSAPP_ALLOWED_SENDERS |
- | Comma-separated phone/JID allowlist |
| Spotify | ||
SPOTIFY_CLIENT_ID |
- | Spotify client ID |
SPOTIFY_CLIENT_SECRET |
- | Spotify client secret |
| Context | ||
DEVDUCK_LOG_LINE_COUNT |
50 |
Recent log lines in context |
DEVDUCK_LAST_MESSAGE_COUNT |
200 |
Recent messages in context |
Troubleshooting
Ollama model not found:
# DevDuck auto-pulls models, but if it fails:
ollama pull qwen3:1.7b
Port already in use:
# Change ports (10000+ block)
export DEVDUCK_AGENTCORE_PROXY_PORT=10010
export DEVDUCK_WS_PORT=10011
export DEVDUCK_TCP_PORT=10012
devduck
Hot-reload not working:
# Ensure tools directory exists
mkdir -p ./tools
# Check file watcher logs
devduck
๐ฆ view_logs(action="search", pattern="watcher")
Memory/performance issues:
# Use lighter model
export STRANDS_MODEL_ID="qwen3:0.5b"
# Reduce context
export DEVDUCK_LOG_LINE_COUNT=20
export DEVDUCK_LAST_MESSAGE_COUNT=50
Speech dependencies not found:
# Install speech extras
pip install "devduck[speech]"
# Or with pipx
pipx install "devduck[speech]"
Ambient overlay not starting:
# Make sure tkinter is installed
python3 -c "import tkinter"
# Install tkinter if missing
brew install python-tk@3.13 # macOS
sudo apt-get install python3-tk # Ubuntu/Debian
sudo dnf install python3-tkinter # Fedora
Tray app not starting (macOS):
# Install rumps
pip install rumps
# Or reinstall devduck
pip install -e .
View logs: devduck โ ๐ฆ view_logs()
GitHub Actions
Run DevDuck in CI/CD pipelines:
name: AI Code Assistant
on:
issues:
types: [opened, edited]
pull_request:
types: [opened, edited, synchronize]
jobs:
devduck:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: write
steps:
- uses: cagataycali/devduck@main
with:
task: "Analyze and help with this issue or PR"
provider: "github"
model: "gpt-4o"
tools: "shell,file_read,file_write,use_github,calculator"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Sub-agent workflows:
devduck("Create a sub-agent to analyze test coverage")
Resources
- Strands SDK: github.com/strands-agents/sdk-python
- Documentation: strandsagents.com
- Web UI: cagataycali.github.io/devduck
Citation
@software{devduck2025,
author = {Cagatay Cali},
title = {DevDuck: Self-Modifying AI Agent with Unified Mesh, Hot-Reload, and Multi-Protocol Servers},
year = {2025},
url = {https://github.com/cagataycali/devduck}
}
Apache 2.0 | Built with Strands Agents | @cagataycali
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file devduck-1.9.1.tar.gz.
File metadata
- Download URL: devduck-1.9.1.tar.gz
- Upload date:
- Size: 470.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a52c35c1534e84b09987d88b14133440e0effe977996b2f87daebb4cf837fa87
|
|
| MD5 |
06f1e316e656fc8821df6c30b1a0949c
|
|
| BLAKE2b-256 |
fbf69bfb676aa20e98c82ef52cfb853521616120307c4eaf8dbcf446fe02aa9c
|
File details
Details for the file devduck-1.9.1-py3-none-any.whl.
File metadata
- Download URL: devduck-1.9.1-py3-none-any.whl
- Upload date:
- Size: 311.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9f5bdee0b6695bcd9dac818b1b1b0d3679c619e916d39f92132c3e8543b9d51
|
|
| MD5 |
6764f922d155ecd16290d01ff91d17e1
|
|
| BLAKE2b-256 |
15c81f531f631d294bec160f579f1d18af1c49c00522127ee2b4b72c5229967b
|