ai-team-os
PyPI
v1.3.4
Published by cronusl-1141 — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.
Self-driving AI company OS — turn Claude Code into a persistent, self-managing dev team
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:
The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.
2. Client adoption risk — 100 − 7 = 93. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −6 | capability blast radius (high) — client exposure if the model is manipulated |
| −1 | publisher verification (public source) — no provenance, but the source is public and inspectable |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
In the server's implementation (`hooks/workflow_reminder.py:479`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ck_patterns = [".env", "id_rsa", ".pem", ".key"] for pat in block_patterns: if pat in cmd_
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server hooks/workflow_reminder.py
In the server's implementation (`plugin/hooks/workflow_reminder.py:872`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ck_patterns = [".env", "id_rsa", ".pem", ".key"] for pat in block_patterns: if pat in cmd_
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server plugin/hooks/workflow_reminder.py
In the server's implementation (`src/aiteam/hooks/workflow_reminder.py:872`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ck_patterns = [".env", "id_rsa", ".pem", ".key"] for pat in block_patterns: if pat in cmd_
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/aiteam/hooks/workflow_reminder.py
In the server's implementation (`hooks/session_bootstrap.py:117`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: fetch_result = subprocess.run( ["git", "fetch", "--quiet", "origin"], cwd=str
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server hooks/session_bootstrap.py
In the server's implementation (`install.py:18`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try: return subprocess.run( args, cwd=cwd, check=True, shell=(sys.platform == "win
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server install.py
In the server's implementation (`plugin/bootstrap.py:88`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ile=sys.stderr) subprocess.run( [sys.executable, "-m", "venv", str(venv_dir)], capture_o
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server plugin/bootstrap.py
In the server's implementation (`plugin/hooks/session_bootstrap.py:114`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ain or master).""" subprocess.run( ["git", "fetch", "--quiet", "origin"], cwd=str(project_root),
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server plugin/hooks/session_bootstrap.py
In the server's implementation (`src/aiteam/hooks/session_bootstrap.py:114`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ain or master).""" subprocess.run( ["git", "fetch", "--quiet", "origin"], cwd=str(project_root),
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/aiteam/hooks/session_bootstrap.py
In the server's implementation (`src/aiteam/mcp/_autostart.py:171`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try: out = subprocess.check_output( ["netstat", "-ano", "-p", "TCP"], text=
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/aiteam/mcp/_autostart.py
In the server's implementation (`src/aiteam/mcp/tools/git_ops.py:19`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: tderr).""" result = subprocess.run( ["git"] + args, capture_output=True, text=True,
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/aiteam/mcp/tools/git_ops.py
Untrusted-input tools ([cross_project_inbox, meeting_read_messages]) co-exist with external-action tools ([send_notification, meeting_send_message]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.
Evidence: untrusted [cross_project_inbox, meeting_read_messages] → sinks [send_notification, meeting_send_message]
Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.
Location: flow cross_project_inbox → send_notification
In the server's implementation (`plugin/dashboard-dist/assets/index-CICd_ipg.js:11`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: t[e.id];try{let r=await import(e.module);return t[e.id]=r,r}catch(r){return console.error(`Error loading route module \`
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server plugin/dashboard-dist/assets/index-CICd_ipg.js
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_workflow_reminder.py:999`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: lf): """git add id_rsa (SSH key) must call sys.exit(2).""" state: dict = {} event = {"tool_name"
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_workflow_reminder.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/integration/test_cross_feature.py:316`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ): """POST with eval() injection → 400.""" client = integration_client resp = client.post(
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/integration/test_cross_feature.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_api_comprehensive.py:68`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: 在性检查 if not eval(assertion, {"body": body}): # noqa: S307 assertion_failures.append(asserti
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_api_comprehensive.py
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/install.py:327`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: package") result = subprocess.run( [sys.executable, "-m", "pip", "install", "-e", "."], cwd=str(p
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server scripts/install.py
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/uninstall.py:50`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: y: result = subprocess.run( ["powershell", "-NoProfile", "-Command", "(Get-
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server scripts/uninstall.py
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/update.py:22`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try: return subprocess.run( args, cwd=cwd, check=True, shell
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server scripts/update.py
Each tool and what it can reach — statically extracted from the published source.
cross_project_inboxingests untrusted inputmeeting_read_messagesingests untrusted inputmeeting_send_messagenetwork egresssend_notificationnetwork egressagent_activity_queryno sensitive capabilityagent_heartbeatno sensitive capabilityagent_listno sensitive capabilityagent_registerno sensitive capabilityagent_template_listno sensitive capabilityagent_template_recommendno sensitive capabilityagent_trust_scoresno sensitive capabilityagent_trust_updateno sensitive capabilityagent_update_statusno sensitive capabilitybriefing_addno sensitive capabilitybriefing_dismissno sensitive capabilitybriefing_listno sensitive capabilitybriefing_resolveno sensitive capabilitybudget_statusno sensitive capabilitycache_clearno sensitive capabilitycache_statsno sensitive capabilitychannel_mentionsno sensitive capabilitychannel_readno sensitive capabilitychannel_sendno sensitive capabilitycontext_resolveno sensitive capabilitycross_project_sendno sensitive capabilitydebate_code_reviewno sensitive capabilitydebate_startno sensitive capabilitydecision_logno sensitive capabilitydiagnose_task_failureno sensitive capabilitydismiss_project_registrationno sensitive capabilityecosystem_recipesno sensitive capabilityerror_budget_statusno sensitive capabilityerror_budget_updateno sensitive capabilityevent_listno sensitive capabilityfailure_analysisno sensitive capabilityfile_lock_acquireno sensitive capabilityfile_lock_checkno sensitive capabilityfile_lock_listno sensitive capabilityfile_lock_releaseno sensitive capabilityfind_skillno sensitive capabilitygit_auto_commitno sensitive capabilitygit_create_prno sensitive capabilitygit_status_checkno sensitive capabilityguardrail_checkno sensitive capabilityguardrail_check_payloadno sensitive capabilityloop_advanceno sensitive capabilityloop_next_taskno sensitive capabilityloop_pauseno sensitive capabilityloop_resumeno sensitive capabilityloop_reviewno sensitive capabilityloop_startno sensitive capabilityloop_statusno sensitive capabilitymeeting_attendance_checkno sensitive capabilitymeeting_concludeno sensitive capabilitymeeting_createno sensitive capabilitymeeting_listno sensitive capabilitymeeting_template_listno sensitive capabilitymeeting_updateno sensitive capabilitymemory_searchno sensitive capabilityos_health_checkno sensitive capabilityos_report_issueno sensitive capabilityos_resolve_issueno sensitive capabilitypattern_recordno sensitive capabilitypattern_searchno sensitive capabilityphase_createno sensitive capabilityphase_listno sensitive capabilitypipeline_advanceno sensitive capabilitypipeline_createno sensitive capabilitypipeline_statusno sensitive capabilityproject_createno sensitive capabilityproject_deleteno sensitive capabilityproject_listno sensitive capabilityproject_summaryno sensitive capabilityproject_updateno sensitive capabilityprompt_effectivenessno sensitive capabilityprompt_version_listno sensitive capabilityreport_listno sensitive capabilityreport_readno sensitive capabilityreport_saveno sensitive capabilityscheduler_createno sensitive capabilityscheduler_deleteno sensitive capabilityscheduler_listno sensitive capabilityscheduler_pauseno sensitive capabilitytask_auto_matchno sensitive capabilitytask_compareno sensitive capabilitytask_createno sensitive capabilitytask_decomposeno sensitive capabilitytask_execution_traceno sensitive capabilitytask_list_projectno sensitive capabilitytask_memo_addno sensitive capabilitytask_memo_readno sensitive capabilitytask_replayno sensitive capabilitytask_runno sensitive capabilitytask_statusno sensitive capabilitytask_subtasksno sensitive capabilitytask_updateno sensitive capabilitytaskwall_viewno sensitive capabilityteam_briefingno sensitive capabilityteam_closeno sensitive capabilityteam_createno sensitive capabilityteam_deleteno sensitive capabilityteam_knowledgeno sensitive capabilityteam_listno sensitive capabilityteam_setup_guideno sensitive capabilityteam_statusno sensitive capabilitytoken_costsno sensitive capabilityverify_completionno sensitive capabilitywatchdog_checkno sensitive capabilitywhat_if_analysisno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.3.4 latest |
A 93/100 | 18 | 1.13.0 | 2026-08-25 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan ai-team-os --online --registry pypi
MCP AgentChat - 让 AI Agent 通过 Telegram 与用户实时交互:发送消息、图片,等待用户回复
A Model Context Protocol (MCP) server for Airthings Air Quality Monitor devices.
MCP server for Anki
TypeScript package for reading and searching Apple Notes on macOS via direct SQLite access. Includes markdown conversion, attachment support, and offers a local MCP server!
Verified biotech catalyst calendar (PDUFA/AdComm/trial readouts) anchored to official sources.
Appointment booking platform letting agents check provider availability and create bookings.