SourceScore

Verified claim · AI-ML · 95% confidence

Devin publicly released on: 2024-03-12 by Cognition Labs.

Last verified 2026-05-16 · Methodology veritas-v0.1 · 7989a48c95f119a8

Structured fields

Subject
Devin
Predicate
publicly_released_on
Object
2024-03-12 by Cognition Labs
Confidence
95%
Tags
devin · cognition-labs · coding-agent · released_on · 2024

Sources (2)

  1. [1] official blog · Cognition Labs · 2024-03-12

    Introducing Devin, the first AI software engineer
    Today, we're excited to introduce Devin, the first AI software engineer. Devin is a tireless, skilled teammate, equally ready to build alongside you or independently complete tasks for you to review.
  2. [2] docs · Cognition Labs · 2024-03-12

    Cognition Labs documentation

Cite this claim

Ready-to-paste citation (Markdown / plain text):

Devin publicly released on: 2024-03-12 by Cognition Labs. — SourceScore Claim 7989a48c95f119a8 (verified 2026-05-16). https://sourcescore.org/api/v1/claims/7989a48c95f119a8.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/7989a48c95f119a8/" width="100%" height="360" frameborder="0" loading="lazy" title="Devin publicly released on: 2024-03-12 by Cognition Labs."></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/7989a48c95f119a8.json

JavaScript / TypeScript

const r = await fetch("https://sourcescore.org/api/v1/claims/7989a48c95f119a8.json"); const envelope = await r.json(); console.log(envelope.claim.statement); // "Devin publicly released on: 2024-03-12 by Cognition Labs."

Python

import httpx r = httpx.get("https://sourcescore.org/api/v1/claims/7989a48c95f119a8.json") envelope = r.json() print(envelope["claim"]["statement"]) # "Devin publicly released on: 2024-03-12 by Cognition Labs."

LangChain (retrieve-then-cite)

from langchain_core.tools import tool import httpx @tool def get_devin_fact() -> dict: """Fetch the verified SourceScore claim for Devin.""" r = httpx.get("https://sourcescore.org/api/v1/claims/7989a48c95f119a8.json") return r.json()