Smithy

1 program Added 2026-02-11T10:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit 274f8cdd60 · authored 2026-02-11T14:01:42+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/smithy
LLM (this repo) · 1PldbLinguistPygments

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.smithylinguistprimary7.6K files
.smithypygmentsprimary7.6K files

Related languages

Smarty (0.23)SmartPy (0.21)Spry (0.17)Sally (0.15)Simit (0.15)

LLM-contributed programs

Weather Service

Provenance: commit 274f8cdd60 · authored 2026-02-11T14:01:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.smithy · added: 2026-02-11T10:30:00Z
$version: "2.0"

namespace example.weather

/// Provides weather forecasts.
@paginated(inputToken: "nextToken", outputToken: "nextToken",
           pageSize: "pageSize")
service Weather {
    version: "2024-01-01"
    operations: [GetForecast]
}

@readonly
operation GetForecast {
    input: GetForecastInput
    output: GetForecastOutput
}

@input
structure GetForecastInput {
    @required
    city: String

    nextToken: String
    pageSize: Integer
}

@output
structure GetForecastOutput {
    forecast: Forecast
    nextToken: String
}

structure Forecast {
    @required
    temperature: Integer

    @required
    conditions: String

    humidity: Integer
}

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Smithy (mapped to pl/smithy). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Smithy/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← SMITHb SML →