SourceScore

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. [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. [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.json

Embed 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.

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.json

JavaScript / 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()