Verified claim · AI-ML · 95% confidence
Replit Agent publicly released on: 2024-09-05 by Replit.
Last verified 2026-05-16 · Methodology veritas-v0.1 · 717c4809d659743f
Structured fields
- Subject
- Replit Agent
- Predicate
publicly_released_on- Object
- 2024-09-05 by Replit
- Confidence
- 95%
- Tags
- replit-agent · replit · coding-agent · released_on · 2024
Sources (2)
[1] official blog · Replit · 2024-09-05
Replit Agent — autonomous AI development“Replit Agent is an autonomous AI agent that helps you build, run, and deploy applications. From the simple prompt, it sets up the environment, installs dependencies, writes code, and runs the application.”
[2] docs · Replit · 2024-09-05
Replit Agent — official documentation
Cite this claim
Ready-to-paste citation (Markdown / plain text):
Replit Agent publicly released on: 2024-09-05 by Replit. — SourceScore Claim 717c4809d659743f (verified 2026-05-16). https://sourcescore.org/api/v1/claims/717c4809d659743f.jsonEmbed this claim
Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.
<iframe src="https://sourcescore.org/embed/claim/717c4809d659743f/" width="100%" height="360" frameborder="0" loading="lazy" title="Replit Agent publicly released on: 2024-09-05 by Replit."></iframe>Preview: open in new tab
Related claims
Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.
Devin publicly released on: 2024-03-12 by Cognition Labs.
7989a48c95f119a8 · 95% confidence · shares 3 tags (coding-agent, released_on, 2024)
Gemma released on: 2024-02-21.
87b09546387243ef · 100% confidence · shares 2 tags (released_on, 2024)
AlphaFold 3 released on: 2024-05-08.
bfae8cafd2eb0bf8 · 100% confidence · shares 2 tags (released_on, 2024)
OLMo released on: 2024-02-01 by Allen Institute for AI.
db733143bb054d41 · 100% confidence · shares 2 tags (2024, released_on)
Gemini Ultra publicly released on: 2024-02-08 via Gemini Advanced subscription.
d2ac7cd6fc8b1156 · 100% confidence · shares 2 tags (released_on, 2024)
Use this claim in your code
Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.
cURL
curl https://sourcescore.org/api/v1/claims/717c4809d659743f.jsonJavaScript / TypeScript
const r = await fetch("https://sourcescore.org/api/v1/claims/717c4809d659743f.json");
const envelope = await r.json();
console.log(envelope.claim.statement);
// "Replit Agent publicly released on: 2024-09-05 by Replit."Python
import httpx
r = httpx.get("https://sourcescore.org/api/v1/claims/717c4809d659743f.json")
envelope = r.json()
print(envelope["claim"]["statement"])
# "Replit Agent publicly released on: 2024-09-05 by Replit."LangChain (retrieve-then-cite)
from langchain_core.tools import tool
import httpx
@tool
def get_replit_agent_fact() -> dict:
"""Fetch the verified SourceScore claim for Replit Agent."""
r = httpx.get("https://sourcescore.org/api/v1/claims/717c4809d659743f.json")
return r.json()