Framework-agnostic multi-agent coordination CLI
Project description
ย ClawTeam: Agent Swarm Intelligence
The Evolution of AI Agents ๐: Solo ๐ค โ Swarm ๐ฆ๐ค๐ค๐ค
ClawTeam: Let AI Agents Form Swarms, Think & Work Together, and Ship Faster
One Command Line: Full Automation. โ agents spawn swarms, delegate tasks, and deliver results.
Human provides the goal. The Agent Team orchestrates everything else.
Full compatibility with Claude Code, Codex, OpenClaw, nanobot, Cursor, and any CLI agent.ย ย ไธญๆๆๆกฃ | ํ๊ตญ์ด
๐ฐ News
2026-03-18 ClawTeam project launched publicly.
2026-03-23 ClawTeam v0.2.0 is released today.
2026-03 The current baseline includes config management, multi-user workflows, Web UI, P2P transport, and team templates.
โจ ClawTeam's Key Features
๐ฌ AI Research Automationโข Large-Scale Automated ML Experimentation โข AI Model Training & Optimization โข AI-Driven Hypothesis Generation & Validation โข Self-Improving Model Architectures |
๐๏ธ Agentic Engineeringโข Autonomous Full-Stack Development โข Self-Evolving Software โข Collaborative Open Source Development โข Real-Time System Integration |
๐ฐ AI Hedge Fundโข Automated Market Research & Data Mining โข Multi-Strategy Portfolio Optimization โข Real-Time Risk Assessment โข Algorithmic Trading Execution & Monitoring |
๐ช Your Own Swarmโข Custom Scientific Research Teams โข Personalized Investment Committees โข Business Operations Teams โข Content Production Studios |
โ๏ธ Intelligent leader agent orchestrates 8 specialized sub-agents across 8 H100 GPUs, autonomously designing experiments and dynamically reallocating resources based on real-time performance.
๐ง The system synthesizes breakthroughs across teams and evolves strategies independently โ achieving full research automation without human intervention.
๐ค Why ClawTeam?
Current AI agents are powerful โ but they work in isolation. When facing complex tasks, you're stuck manually coordinating multiple agents, juggling context, and stitching together fragmented results.
What if agents could think and work as a team?
ClawTeam unlocks Agent Swarm Intelligence โ where AI agents self-organize into collaborative teams, intelligently divide complex work, share insights in real-time, and converge on breakthrough solutions.
โข ๐ Spawns specialized sub-agents โ each with dedicated environments and focus areas
โข ๐ Designs intelligent task allocation โ with smart dependency management
โข ๐ฌ Facilitates real-time coordination โ seamless inter-agent communication
โข ๐ Monitors team performance โ tracks progress and identifies bottlenecks
โข ๐ Adapts strategies dynamically โ reallocates resources and redirects efforts
โจ The Result?
You set the vision. The swarm executes with collective intelligence.
๐ฏ Swarm Intelligence in Action
๐ฆ Agents Spawn AgentsThe leader agent calls # The leader agent runs:
clawteam spawn --team my-team \
--agent-name worker1 \
--task "Implement auth module"
|
๐ค Agents Talk to AgentsWorkers check their inbox, update task status, and report results โ all through CLI commands that are auto-injected into their prompt. # A worker agent checks tasks:
clawteam task list my-team --owner me
# Then reports back:
clawteam inbox send my-team leader \
"Auth done. All tests passing."
|
๐ You Just WatchMonitor the swarm from a tiled tmux view or a Web UI. The leader handles coordination โ you intervene only when you want to. # Watch all agents simultaneously
clawteam board attach my-team
# Or open the web dashboard
clawteam board serve --port 8080
|
| ClawTeam | Other multi-agent frameworks | |
|---|---|---|
| ๐ฏ Who uses it | The AI agents themselves | Humans writing orchestration code |
| โก Setup | pip install + one prompt to the leader |
Docker, cloud APIs, YAML configs |
| ๐๏ธ Infrastructure | Just a filesystem and tmux | Redis, message queues, databases |
| ๐ค Agent support | Any CLI agent (Claude Code, Codex, OpenClaw, custom) | Framework-specific only |
| ๐ณ Isolation | Git worktrees (real branches, real diffs) | Containers or virtual envs |
| ๐ง Intelligence | Swarm self-organizes via CLI commands | Hard-coded orchestration logic |
๐ฌ Use Cases
๐ฌ 1. Autonomous ML Research โ 8 Agents ร 8 H100 GPUs
Based on @karpathy's autoresearch.
๐ซ One Command. Full Automation.
Human input: "Optimize this LLM training setup using 8 GPUs"
The Agent Team handles everything else:
- Spawns 8 specialized research agents across H100s
- Designs 2000+ autonomous experiments
- Achieves breakthrough improvements (val_bpb: 1.044โ0.977)
- Zero human intervention required
๐ฏ Pure Research at Scale
Transform months of manual hyperparameter tuning into hours of intelligent automation.
๐ val_bpb: 1.044 โ 0.977 (6.4% improvement) | 2430+ experiments | ~30 GPU-hours
What agent team did autonomously:
Human prompt: "Use 8 GPUs to optimize train.py. Read program.md for instructions."
๐ฆ Leader agent's actions:
โโโ ๐ Read program.md, understand the experiment protocol
โโโ ๐๏ธ clawteam team spawn-team autoresearch
โโโ ๐ Assigned each GPU a research direction:
โ โโโ GPU 0: clawteam spawn --task "Explore model depth (DEPTH 10-16)"
โ โโโ GPU 1: clawteam spawn --task "Explore model width (ASPECT_RATIO 80-128)"
โ โโโ GPU 2: clawteam spawn --task "Tune learning rates and optimizer"
โ โโโ GPU 3: clawteam spawn --task "Explore batch size and accumulation"
โ โโโ GPU 4-7: clawteam spawn tmux codex --task "..." (Codex agents)
โ โโโ ๐ณ Each agent: own git worktree, own branch, isolated experiments
โโโ ๐ Every 30 minutes, checked results:
โ โโโ clawteam board show autoresearch
โ โโโ Read each agent's results.tsv
โ โโโ ๐ Identified best findings (depth=12, batch=2^17, norm-before-RoPE)
โ โโโ ๐ก Cross-pollinated: told new agents to start from the best config
โโโ ๐ง When agents finished, reassigned GPUs:
โ โโโ Killed idle agents, cleaned worktrees
โ โโโ Created new worktrees from the best commit
โ โโโ Spawned fresh agents with combined optimization directions
โโโ โ
After 2430+ experiments: val_bpb 1.044 โ 0.977
Full results: novix-science/autoresearch
๐๏ธ 2. Agentic Software Engineering
You tell Claude Code: "Build me a full-stack todo app." Claude realizes this is a multi-module task and self-organizes a team:
Human prompt: "Build a full-stack todo app with auth, database, and React frontend."
๐ฆ Leader agent's actions:
โโโ ๐๏ธ clawteam team spawn-team webapp -d "Full-stack todo app"
โโโ ๐ Created tasks with dependency chains:
โ โโโ T1: "Design REST API schema" โ architect
โ โโโ T2: "Implement JWT auth" --blocked-by T1 โ backend1
โ โโโ T3: "Build database layer" --blocked-by T1 โ backend2
โ โโโ T4: "Build React frontend" โ frontend
โ โโโ T5: "Integration tests" --blocked-by T2,T3,T4 โ tester
โโโ ๐ Spawned 5 sub-agents (each in its own git worktree):
โ โโโ clawteam spawn --agent-name architect --task "Design the API schema"
โ โโโ clawteam spawn --agent-name backend1 --task "Implement JWT auth"
โ โโโ clawteam spawn --agent-name backend2 --task "Build PostgreSQL models"
โ โโโ clawteam spawn --agent-name frontend --task "Build React UI"
โ โโโ clawteam spawn --agent-name tester --task "Write pytest tests"
โโโ ๐ Dependency auto-resolution:
โ โโโ architect completes โ backend1 and backend2 auto-unblock
โ โโโ All backends complete โ tester auto-unblocks
โ โโโ Each agent calls: clawteam task update <id> --status completed
โโโ ๐ฌ Sub-agents coordinate via inbox:
โ โโโ architect โ backend1: "Here's the OpenAPI spec: ..."
โ โโโ backend1 โ tester: "Auth endpoints ready at /api/auth/*"
โ โโโ tester โ leader: "All 47 tests passing โ
"
โโโ ๐ณ Leader merges all worktrees into main branch
๐ฐ 3. AI Hedge Fund โ One-Command Team Launch
A pre-built TOML template spawns a complete 7-agent investment analysis team:
# One command launches everything:
clawteam launch hedge-fund --team fund1 --goal "Analyze AAPL, MSFT, NVDA for Q2 2026"
๐ฆ What happens automatically:
โโโ ๐ Portfolio Manager (leader) spawns and receives the goal
โโโ ๐ค 5 Analyst agents spawn, each with a different strategy:
โ โโโ ๐ฉ Buffett Analyst โ value investing (moat, ROE, DCF)
โ โโโ ๐ Growth Analyst โ disruption (TAM, network effects)
โ โโโ ๐ Technical Analyst โ indicators (EMA, RSI, Bollinger)
โ โโโ ๐ Fundamentals โ financial ratios (P/E, D/E, FCF)
โ โโโ ๐ฐ Sentiment Analyst โ news + insider trading signals
โโโ ๐ก๏ธ Risk Manager spawns, waits for all analyst signals:
โ โโโ clawteam inbox receive fund1 (collects all 5 signals)
โ โโโ Consolidates + computes position limits
โ โโโ clawteam inbox send fund1 portfolio-manager "RISK REPORT: ..."
โโโ ๐ผ Portfolio Manager makes final buy/sell/hold decisions
Templates are TOML files โ create your own team archetypes for any domain.
๐ฆ Install
pip install clawteam
# Or from source
git clone https://github.com/HKUDS/ClawTeam.git
cd ClawTeam
pip install -e .
# Optional: P2P transport (ZeroMQ)
pip install -e ".[p2p]"
Requires Python 3.10+, tmux, and a CLI coding agent (e.g. claude, codex). Python dependencies: typer, pydantic, rich.
All spawn examples assume the agent CLI you name is already installed and available on PATH.
๐ Quick Start
If you're new to ClawTeam, follow this order:
- Make sure
tmuxand your agent CLI run standalone on this machine. - Pick one path below: let an agent drive, or drive it manually.
- Use the supported-agent table to choose the right
spawncommand. - If you're integrating a new agent, check the adapter notes before debugging.
โ Before You Start
Run these checks first:
tmux -V
clawteam --help
# Replace claude with the agent you actually want to use:
claude --version
codex --version
nanobot --help
If the agent CLI does not run correctly by itself, clawteam spawn will not fix it.
โก Option 1: Let the Agent Drive (Recommended)
ClawTeam ships with a Claude Code skill that auto-activates. Just install and prompt:
"Build a web app. Use clawteam to split the work across multiple agents."
The agent will automatically create a team, spawn workers, assign tasks, and coordinate โ using clawteam CLI commands under the hood.
๐ง Option 2: Drive It Manually
# 1. Create a team (you become the leader)
clawteam team spawn-team my-team -d "Build the auth module" -n leader
# 2. Spawn worker agents โ each gets a git worktree, tmux window, and identity
clawteam spawn --team my-team --agent-name alice --task "Implement the OAuth2 flow"
clawteam spawn --team my-team --agent-name bob --task "Write unit tests for auth"
# 3. Workers auto-receive a coordination prompt that teaches them to:
# โ
Check tasks: clawteam task list my-team --owner alice
# โ
Update status: clawteam task update my-team <id> --status completed
# โ
Message leader: clawteam inbox send my-team leader "Done!"
# โ
Report idle: clawteam lifecycle idle my-team
# 4. Watch them work side-by-side
clawteam board attach my-team
๐งฉ Profiles and Presets
When you want to use a non-default provider, model, or API gateway, configure a profile first instead of manually exporting provider env vars each time.
# See built-in provider templates
clawteam preset list
clawteam preset show moonshot-cn
# Generate a reusable runtime profile from a preset
clawteam preset generate-profile moonshot-cn claude --name claude-kimi
# Or use the interactive TUI
clawteam profile wizard
# Claude Code on a fresh machine/home may need this once
clawteam profile doctor claude
# Smoke-test the profile before spawning workers
MOONSHOT_API_KEY=... clawteam profile test claude-kimi
Rules of thumb:
profileis the final runtime object used byspawn/launchpresetis a reusable provider template that generates one or more profileswizardis the easiest path for first-time setupdoctoris mainly for Claude Code first-run onboarding state
๐งญ Which Spawn Command Should I Use?
Use clawteam spawn [backend] [command] ... with the command that already works on
your machine:
# Claude Code
clawteam spawn tmux claude --team my-team --agent-name alice --task "Implement OAuth2"
# Codex
clawteam spawn tmux codex --team my-team --agent-name bob --task "Write frontend tests"
# nanobot
clawteam spawn tmux nanobot --team my-team --agent-name carol --task "Build the API"
# A configured profile (recommended for non-default providers/models)
clawteam spawn tmux --profile claude-kimi --team my-team --agent-name dave --task "Refactor the auth flow"
Notes:
tmuxis the default backend and is the best choice when you want to watch interactive agent UIs.subprocessis better for one-shot tools or non-interactive scripts.nanobotis normalized internally tonanobot agent, so the command above is the correct ClawTeam entrypoint.- Claude Code and Codex trust prompts in fresh worktrees are auto-confirmed by the tmux backend.
- For non-default providers/models, prefer
--profile <name>over manually exporting env vars inline.
๐ Adding a Different Agent
ClawTeam can work with agents beyond Claude Code, Codex, and nanobot, but the CLI must satisfy a small compatibility contract:
- The command must exist on
PATHand launch successfully outside ClawTeam. - The agent must be able to run inside a specific working directory or git worktree.
- The agent must accept an initial task, either by command-line argument or interactive input.
- The process must stay alive in
tmuxif it is meant to be interactive.
If you're unsure, test the agent standalone first, then wrap it with:
clawteam spawn subprocess <your-agent> --team my-team --agent-name test --task "Say OK"
If that works, switch to tmux for interactive monitoring.
๐ค Supported Agents
ClawTeam works with any CLI agent that can execute shell commands:
All examples below assume the corresponding CLI already runs standalone on your machine.
| Agent | Spawn Command | Status |
|---|---|---|
| Claude Code | clawteam spawn tmux claude --team ... |
โ Full support |
| Codex | clawteam spawn tmux codex --team ... |
โ Full support |
| OpenClaw | clawteam spawn tmux openclaw --team ... |
โ Full support |
| nanobot | clawteam spawn tmux nanobot --team ... |
โ Full support |
| Kimi CLI | clawteam spawn tmux kimi --team ... |
โ Full support |
| Cursor | clawteam spawn subprocess cursor --team ... |
๐ฎ Experimental |
| Custom scripts | clawteam spawn subprocess python --team ... |
โ Full support |
For provider-aware setups such as Claude Code via Moonshot Kimi or Gemini via
Vertex, use profile + preset and then spawn with --profile.
โจ Features
๐ฆ Agent Self-Organization
๐ณ Workspace Isolation
๐ Task Tracking with Dependencies
|
๐ฌ Inter-Agent Messaging
๐ Monitoring & Dashboards
๐ช Team Templates
|
๐ง More
| Feature | Description |
|---|---|
| ๐ Plan Approval | Agents submit plans for leader review before execution |
| ๐ Lifecycle Protocol | Graceful shutdown request/approve/reject, idle notifications |
| ๐ JSON Output | --json flag on all commands โ agents parse structured output |
| ๐ Cross-Machine | Shared filesystem (NFS/SSHFS) or P2P transport for distributed teams |
| ๐ฅ Multi-User | Namespace agents by user โ multiple humans can share a team |
| โ๏ธ Configuration | Persistent config: env var > config file > default priority |
| ๐ Claude Code Skill | Auto-triggers when users ask about multi-agent coordination |
๐ค How Agents Use ClawTeam
When an agent is spawned via clawteam spawn, it receives an auto-injected coordination prompt:
## Coordination Protocol (auto-injected into every spawned agent)
- ๐ Check your tasks: clawteam task list <team> --owner <your-name>
- โถ๏ธ Start a task: clawteam task update <team> <id> --status in_progress
- โ
Finish a task: clawteam task update <team> <id> --status completed
- ๐ฌ Message leader: clawteam inbox send <team> leader "status update..."
- ๐ฌ Message teammate: clawteam inbox send <team> <name> "info..."
- ๐จ Check inbox: clawteam inbox receive <team>
- ๐ด Report idle: clawteam lifecycle idle <team>
This means any CLI agent can participate in a ClawTeam team โ it just needs to run shell commands. No custom SDK, no API integration, no framework lock-in.
๐ Command Reference
๐ง Core Commands
# ๐๏ธ Team lifecycle
clawteam team spawn-team <team> -d "description" -n <leader>
clawteam team discover # List all teams
clawteam team status <team> # Show members
clawteam team cleanup <team> --force # Delete team
# ๐ Spawn agents
clawteam spawn --team <team> --agent-name <name> --task "do this"
clawteam spawn tmux codex --team <team> --agent-name <name> --task "do this"
# ๐ Task management
clawteam task create <team> "subject" -o <owner> --blocked-by <id1>,<id2>
clawteam task update <team> <id> --status completed # auto-unblocks dependents
clawteam task list <team> --status blocked --owner worker1
clawteam task wait <team> --timeout 300
# ๐ฌ Messaging
clawteam inbox send <team> <to> "message"
clawteam inbox broadcast <team> "message"
clawteam inbox receive <team> # consume messages
clawteam inbox peek <team> # read without consuming
# ๐ Monitoring
clawteam board show <team> # terminal kanban
clawteam board live <team> --interval 3 # auto-refresh
clawteam board attach <team> # tiled tmux view
clawteam board serve --port 8080 # web UI
๐ณ Workspace, ๐ Plan, ๐ Lifecycle, โ๏ธ Config
# ๐ณ Workspace (git worktree management)
clawteam workspace list <team>
clawteam workspace checkpoint <team> <agent> # auto-commit
clawteam workspace merge <team> <agent> # merge back to main
clawteam workspace cleanup <team> <agent> # remove worktree
# ๐ Plan approval
clawteam plan submit <team> <agent> "plan" --summary "TL;DR"
clawteam plan approve <team> <plan-id> <agent> --feedback "LGTM"
clawteam plan reject <team> <plan-id> <agent> --feedback "Revise X"
# ๐ Lifecycle
clawteam lifecycle request-shutdown <team> <agent> --reason "done"
clawteam lifecycle approve-shutdown <team> <request-id> <agent>
clawteam lifecycle idle <team>
# ๐ช Templates
clawteam launch <template> --team <name> --goal "Build X"
clawteam template list
# โ๏ธ Config
clawteam config show
clawteam config set transport p2p
clawteam config health
| Setting | Env Var | Default | Description |
|---|---|---|---|
data_dir |
CLAWTEAM_DATA_DIR |
~/.clawteam |
Data directory |
transport |
CLAWTEAM_TRANSPORT |
file |
file or p2p |
workspace |
CLAWTEAM_WORKSPACE |
auto |
auto / always / never |
default_backend |
CLAWTEAM_DEFAULT_BACKEND |
tmux |
tmux or subprocess |
skip_permissions |
CLAWTEAM_SKIP_PERMISSIONS |
true |
Auto-approve agent tools |
๐๏ธ Architecture
Human: "Optimize this LLM"
โ
โผ
โโโโโโโโโโโโโโโโ clawteam spawn โโโโโโโโโโโโโโโโ
โ ๐ฆ Leader โ โโโโโโโโโโโโโโโโโโโโโโโบ โ ๐ค Worker โ
โ (Claude Code)โ โโโโโโโ โ (Claude Code)โ
โ โ โ โ git worktree โ
โ Uses: โ โ โ tmux window โ
โ โข spawn โ โ clawteam spawn โโโโโโโโโโโโโโโโ
โ โข task createโ โ
โ โข inbox send โ โผ โโโโโโโโโโโโโโโโ
โ โข board show โ โโโโโโโโโโโโโโโโโโโโโโโบ โ ๐ค Worker โ
โ โข task wait โ โ โ (Codex) โ
โโโโโโโโโโโโโโโโ โ โ git worktree โ
โ โ tmux window โ
โ clawteam spawn โโโโโโโโโโโโโโโโ
โผ
โโโโโโโโโโโโโโโโ
โ ๐ค Worker โ Each worker uses:
โ (any CLI) โ โข task list (check work)
โ git worktree โ โข task update (report done)
โ tmux window โ โข inbox send (message leader)
โโโโโโโโโโโโโโโโ โข inbox receive (get instructions)
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโ
โ ~/.clawteam/ โ
โ โโโ teams/ (who) โ
โ โโโ tasks/ (what)โ
โ โโโ inboxes/ (talk)โ
โ โโโ workspaces/ โ
โ (isolated code)โ
โโโโโโโโโโโโโโโโโโโโโโโ
All state lives in ~/.clawteam/ as JSON files. No database, no server, no cloud. Atomic tmp + rename writes ensure crash safety.
| Spawn Default | Value | Override |
|---|---|---|
| Backend | tmux |
clawteam spawn subprocess ... |
| Command | claude |
clawteam spawn tmux codex ... |
| Workspace | auto (git worktree) |
--no-workspace |
| Permissions | skip | --no-skip-permissions |
| Transport | How it works | When to use |
|---|---|---|
| file (default) | JSON files in inbox dirs | Single machine, shared FS |
| p2p | ZeroMQ PUSH/PULL + file fallback | Low-latency, auto-fallback |
๐บ๏ธ Roadmap
| Phase | Version | What | Status |
|---|---|---|---|
| Current | v0.3 | File + P2P (ZeroMQ) transport, Web UI, multi-user, team templates | โ Shipped |
| Phase 1 | v0.4 | Redis Transport โ cross-machine messaging | ๐ Planned |
| Phase 2 | v0.5 | Shared State Layer โ team config and tasks across machines | ๐ Planned |
| Phase 3 | v0.6 | Agent Marketplace โ discover and reuse community agent templates | ๐ก Exploring |
| Phase 4 | v0.7 | Adaptive Scheduling โ dynamically reassign tasks based on agent performance | ๐ก Exploring |
| Phase 5 | v1.0 | Production-grade โ auth, permissions, audit logs | ๐ก Exploring |
Milestones
| Milestone | Status | Notes |
|---|---|---|
| v0.1.x | โ Shipped | Core CLI, team/task/inbox flows, board, templates, packaging. |
| v0.2.0 | โ Released | Stabilization, docs refresh, spawn/workspace fixes, and release packaging. |
| v0.3 | ๐ Roadmap baseline | File + P2P transport, Web UI, multi-user workflow, team templates. |
For the longer-term plan, see ROADMAP.md.
๐ค Contributing
We welcome contributions! ClawTeam is designed to be extensible:
- ๐ค New agent integrations โ Add support for more AI coding agents
- ๐ช Team templates โ Create TOML templates for new domains (DevOps, data science, etc.)
- ๐ Transport backends โ Redis, NATS, or other message transports
- ๐ Dashboard improvements โ Enhanced Web UI, Grafana integration
- ๐ Documentation โ Tutorials, best practices, agent prompt engineering guides
๐ Acknowledgements
- @karpathy/autoresearch โ the autonomous ML research framework used in our 8-agent swarm demo
- Claude Code and Codex โ AI coding agents that work as ClawTeam team members
- ai-hedge-fund โ inspiration for the multi-analyst hedge fund template
- CLI-Anything โ sister project making all software agent-native
โญ Star History
If you find ClawTeam helpful, please consider giving us a star! โญ
๐ License
MIT License โ free to use, modify, and distribute.
ClawTeam โ Agent Swarm Intelligence. ๐ฆ
8 agents ร 8 H100s ร 2430 experiments ร one CLI ร one swarm
Thanks for visiting โจ ClawTeam!
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 clawteam-0.2.0.tar.gz.
File metadata
- Download URL: clawteam-0.2.0.tar.gz
- Upload date:
- Size: 128.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4427b910ea04f8aa4c6d4a7f3a978a3d8c8027b0c542fbaff93582bf29d83d7e
|
|
| MD5 |
55fffcec2d30bd60db2d61e063552d84
|
|
| BLAKE2b-256 |
ca3395c6f8bde610cc80312e43412edd7aa6e55486f4637e234ef45b39816047
|
File details
Details for the file clawteam-0.2.0-py3-none-any.whl.
File metadata
- Download URL: clawteam-0.2.0-py3-none-any.whl
- Upload date:
- Size: 127.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
635f7125490067ce5838a511bf2fce02716d2d552806ceb89854d1c30ddcee3d
|
|
| MD5 |
92b9a3878ea6cc133fdfa824adb80355
|
|
| BLAKE2b-256 |
0ed8814d901c5eed02f7abfdbbfeae0dc8c8730c50f48e405fe2668e1a51b4b6
|