AgentSpeak
1 program
Added 2026-02-06T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: AgentSpeak(L)
Provenance: commit 7e6a38fa43 · authored 2026-02-06T13:14:26+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/agentspeakWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | agent-oriented |
|---|---|
| Designed by | Anand Rao |
| First appeared | 1996 |
Related languages
LLM-contributed programs
Environment Monitor Agent
Provenance: commit 7e6a38fa43 · authored 2026-02-06T13:14:26+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Initial beliefs
temperature(20).
humidity(50).
// Initial goal
!monitor_environment.
// Plan to achieve the goal
+!monitor_environment : temperature(T) & T > 25
<- .print("Warning: Temperature is high: ", T);
!check_humidity.
+!monitor_environment : temperature(T) & T <= 25
<- .print("Temperature is normal: ", T);
!check_humidity.
// Plan to check humidity
+!check_humidity : humidity(H) & H > 70
<- .print("Warning: Humidity is high: ", H).
+!check_humidity : humidity(H) & H <= 70
<- .print("Humidity is normal: ", H).
// React to temperature changes
+temperature(T) : T > 25
<- .print("Temperature changed to high: ", T).
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.)