Skip to content
ai-supply.store
探すカテゴリランキングコミュニティAgent APIFAQ
サインイン無料登録
catalog / Agentic capability / BabyAGI
◉AgentAgentic capabilityFree

BabyAGI

Pioneering autonomous task-management AI that uses GPT-4 and vector memory to self-generate and prioritize tasks.

@ai-supply
インストール数299k
⟳ upstream main@fa8930e · updated 5mo ago
↗ ソースリポジトリ
← More Agentic capabilityAgentic capability leaderboard →How we grade security →Source ↗
! Grade B · 88/100 · ReviewSecurity assessment
✓No compromise signals8capabilities surfaced1known CVE7of 20 OWASP controls clear
Broad capability surfacePotentially unbounded loopLow-confidence secret matchVulnerable dependencies
scanned 18d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

BabyAGI

BabyAGI is the original minimal autonomous AI agent framework. It demonstrated that a small loop — execute task → create new tasks → prioritize tasks → repeat — with vector-based memory could autonomously work toward an objective without per-step human guidance.

Key Features

  • Task creation loop — after each execution the agent generates follow-up tasks and adds them to the queue
  • Priority queue — tasks are re-ranked by relevance to the overall objective after each cycle
  • Vector memory — task results are stored in Chroma/Pinecone and retrieved to give future tasks context
  • Minimal implementation — the core agent is ~100 lines of Python; easy to understand and extend
  • Foundation paper — cited in hundreds of agent papers; the starting point for CrewAI, AutoGPT, and many others
  • Modular — swap the LLM backend, vector store, or execution engine without touching the loop

Quick Start

git clone https://github.com/yoheinakajima/babyagi.git
cd babyagi
pip install -r requirements.txt
OPENAI_API_KEY=sk-... OBJECTIVE="Research the latest advances in fusion energy" python babyagi.py

Install via ai-supply

npx ai-supply add babyagi-autonomous-task-agent

Curated mirror of the open-source BabyAGI (MIT). Get it from the source.

Rating rank
#1
of 35 in Agentic capability
Install rank
#6
of 35 in Agentic capability
Security score
88/100 · B
review
Security rank
#13
of 35 in Agentic capability
Installs
299k
cat avg 186k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Agentic capability leaderboard →
! Security: Review · 8888/100 · grade Bscanned 18d ago
✓ no compromise signals9 risk-surface · 8/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → x.com, forms.gle, beta.api.augie.studio, api.harmonic.ai, agent.payman.ai, agent-sandbox.payman.ai, api.voilanorbert.com, api.wokelo.ai +1

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chainhigh
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 6 pip requirements declared · yoheinakajima-babyagi-fa8930e/requirements.txtrisk surface
•Vulnerable dependencies — 22 known vulnerabilities in: flask@3.0.3, jinja2@3.1.4, setuptools@75.1.0, werkzeug@3.0.4, flask@2.0.0, idna@3.9.0 (CWE-1395)known CVE · -12 pts
⚠LLM05Improper Output Handlingmedium
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — dynamic code execution · yoheinakajima-babyagi-fa8930e/CODE_READINESS_ANALYSIS.md (CWE-95)expected
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · yoheinakajima-babyagi-fa8930e/babyagi/functionz/packs/drafts/code_writing_functions.py (CWE-835)risk surface
⚠LLM02Sensitive Information Disclosurelow
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — 1 possible: generic-api-key · yoheinakajima-babyagi-fa8930e/babyagi/functionz/packs/plugins/wokelo.py (CWE-798)risk surface
⚠LLM06Excessive Agencylow
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 3 distinct host(s) · yoheinakajima-babyagi-fa8930e/.gitignoreexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · yoheinakajima-babyagi-fa8930e/README.md (CWE-272)risk surface
•External endpoints declared — 4 distinct host(s) · yoheinakajima-babyagi-fa8930e/README.mdexpected
•External endpoints declared — 1 distinct host(s) · yoheinakajima-babyagi-fa8930e/babyagi/dashboard/templates/base.htmlexpected
•External endpoints declared — 2 distinct host(s) · yoheinakajima-babyagi-fa8930e/babyagi/dashboard/templates/function_graph_3d.htmlexpected
⚠LLM07System Prompt Leakagelow
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Low-confidence secret match — 1 possible: generic-api-key · yoheinakajima-babyagi-fa8930e/babyagi/functionz/packs/plugins/wokelo.py (CWE-798)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM01Prompt InjectionPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chainhigh
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 6 pip requirements declared · yoheinakajima-babyagi-fa8930e/requirements.txtrisk surface
•Vulnerable dependencies — 22 known vulnerabilities in: flask@3.0.3, jinja2@3.1.4, setuptools@75.1.0, werkzeug@3.0.4, flask@2.0.0, idna@3.9.0 (CWE-1395)known CVE · -12 pts
⚠ML09Output Integritymedium
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — dynamic code execution · yoheinakajima-babyagi-fa8930e/CODE_READINESS_ANALYSIS.md (CWE-95)expected
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML02Data PoisoningPassed
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (4) · hygiene / uncategorized
•Unrecognized file type — '.gitignore' is not on the allowlist · yoheinakajima-babyagi-fa8930e/.gitignorerisk surface
•Unrecognized file type — '.replit' is not on the allowlist · yoheinakajima-babyagi-fa8930e/.replitrisk surface
•Unrecognized file type — '.?' is not on the allowlist · yoheinakajima-babyagi-fa8930e/CNAMErisk surface
•Unrecognized file type — '.in' is not on the allowlist · yoheinakajima-babyagi-fa8930e/MANIFEST.inrisk surface
✔ verified source · pinned yoheinakajima-babyagi-fa8930e
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/babyagi-autonomous-task-agent/check). Click a policy:

Consume BabyAGI programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/babyagi-autonomous-task-agent

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/babyagi-autonomous-task-agent/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add babyagi-autonomous-task-agent

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/babyagi-autonomous-task-agent/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "babyagi-autonomous-task-agent" })
OpenAPI spec →
vlatest
! Security: Review · 881mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

無料でセキュリティ監査済みのAI機能。スキル、MCP、プラグイン、agent、データセットまで、一つひとつをスコアリングし鮮度も追跡。人にもagentにも使えるように設計されています。

api · v3.1status · all green
お問い合わせ
support@ai-supply.storesecurity@ai-supply.store
カタログ
  • 探す
  • カテゴリ
  • ランキング
  • ベンチマーク
  • セキュリティ
  • Scan a repo
コミュニティ
  • コミュニティ
  • FAQ
エージェント向け
  • クイックスタート (60s)
  • エージェントを認可
  • Agent API
  • OpenAPI 仕様
ビルダー向け
  • 公開する
  • ダッシュボード
アカウント
  • アカウント作成
  • サインイン
  • 設定
法的情報
  • 利用規約
  • パブリッシャー契約
  • 利用規定
  • プライバシーポリシー