Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 24 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,23 +52,34 @@ jobs:
python -c "
import sys, importlib

# Top-level modules from pyproject.toml py-modules
# The package + its single-file submodules (everything now lives
# under the cheetahclaws package — see pyproject [packages.find]).
modules = [
'cheetahclaws', 'agent', 'agent_runner', 'bootstrap',
'circuit_breaker', 'cloudsave', 'compaction', 'config',
'context', 'health', 'jobs', 'logging_utils', 'memory',
'providers', 'quota', 'runtime', 'skills', 'subagent',
'tmux_tools', 'tool_registry',
'cheetahclaws',
'cheetahclaws.agent', 'cheetahclaws.agent_runner',
'cheetahclaws.bootstrap', 'cheetahclaws.circuit_breaker',
'cheetahclaws.cloudsave', 'cheetahclaws.compaction',
'cheetahclaws.config', 'cheetahclaws.context',
'cheetahclaws.health', 'cheetahclaws.jobs',
'cheetahclaws.logging_utils', 'cheetahclaws.memory',
'cheetahclaws.providers', 'cheetahclaws.quota',
'cheetahclaws.runtime', 'cheetahclaws.skills',
'cheetahclaws.subagent', 'cheetahclaws.tmux_tools',
'cheetahclaws.tool_registry',
]

# Packages from pyproject.toml packages
# Sub-packages.
packages = [
'tools', 'tools.security', 'tools.fs', 'tools.shell',
'tools.web', 'tools.notebook', 'tools.diagnostics',
'tools.interaction',
'mcp_client', 'monitor', 'multi_agent', 'plugin', 'skill', 'task',
'voice', 'video', 'checkpoint', 'ui', 'bridges', 'commands',
'modular',
'cheetahclaws.tools', 'cheetahclaws.tools.security',
'cheetahclaws.tools.fs', 'cheetahclaws.tools.shell',
'cheetahclaws.tools.web', 'cheetahclaws.tools.notebook',
'cheetahclaws.tools.diagnostics', 'cheetahclaws.tools.interaction',
'cheetahclaws.mcp_client', 'cheetahclaws.monitor',
'cheetahclaws.multi_agent', 'cheetahclaws.plugin',
'cheetahclaws.skill', 'cheetahclaws.task', 'cheetahclaws.voice',
'cheetahclaws.video', 'cheetahclaws.checkpoint', 'cheetahclaws.ui',
'cheetahclaws.bridges', 'cheetahclaws.commands',
'cheetahclaws.modular',
]

failed = []
Expand Down
Loading