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/smithyExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.smithy | linguist | primary | 7.6K files |
.smithy | pygments | primary | 7.6K files |
Related languages
LLM-contributed programs
Weather Service
Provenance: commit 274f8cdd60 · authored 2026-02-11T14:01:42+01:00 · agent claude-code · model sonnet · WebSearch disabled
$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.)