{"id":36417173,"url":"https://github.com/jason-lang/jason","last_synced_at":"2026-01-11T17:00:37.326Z","repository":{"id":37773881,"uuid":"58932537","full_name":"jason-lang/jason","owner":"jason-lang","description":"Jason is a fully-fledged interpreter for an extended version of AgentSpeak, a BDI agent-oriented logic programming language.","archived":false,"fork":false,"pushed_at":"2025-12-16T13:57:24.000Z","size":24942,"stargazers_count":238,"open_issues_count":7,"forks_count":69,"subscribers_count":25,"default_branch":"main","last_synced_at":"2025-12-20T04:33:53.888Z","etag":null,"topics":["agent","agent-oriented-programming","agentspeak","bdi","programming-language"],"latest_commit_sha":null,"homepage":"http://jason-lang.github.io","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jason-lang.png","metadata":{"files":{"readme":"readme.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-05-16T12:58:46.000Z","updated_at":"2025-12-16T13:56:35.000Z","dependencies_parsed_at":"2023-10-16T19:44:30.590Z","dependency_job_id":"7a025acc-175b-442d-8c4f-a6e5af216bd5","html_url":"https://github.com/jason-lang/jason","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/jason-lang/jason","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jason-lang%2Fjason","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jason-lang%2Fjason/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jason-lang%2Fjason/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jason-lang%2Fjason/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jason-lang","download_url":"https://codeload.github.com/jason-lang/jason/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jason-lang%2Fjason/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28314254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T14:58:17.114Z","status":"ssl_error","status_checked_at":"2026-01-11T14:55:53.580Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","agent-oriented-programming","agentspeak","bdi","programming-language"],"created_at":"2026-01-11T17:00:20.023Z","updated_at":"2026-01-11T17:00:37.315Z","avatar_url":"https://github.com/jason-lang.png","language":"Java","funding_links":[],"categories":["人工智能"],"sub_categories":["Spring Cloud框架"],"readme":"= Jason\n:toc: right\n:icons: font\n:prewrap!:\n\nJason is an interpreter for an extended version of AgentSpeak. It implements the operational semantics of that language, and provides a platform for the development of multi-agent systems, with many user-customisable features. Jason is available as Open Source, and is distributed under GNU LGPL.\n\nJason is developed by https://jomifred.github.io[Jomi F. Hübner] and http://www.inf.pucrs.br/r.bordini[Rafael H. Bordini], based on previous work done with many colleagues, in particular Michael Fisher, Joyce Martins, Álvaro Moreira, Renata Vieira, Willem Visser, Mike Wooldridge, but also many others, as acknowledged in the manual (see the http://jason-lang.github.io/[documents] page).\n\n== Documentation\n\nMost of the Jason documentation is available xref:doc/readme.adoc[in the doc folder] and at the http://jason-lang.github.io[Jason web site].\n\n== Installation\n\n=== For Jason users\n\nFollow the xref:doc/tutorials/getting-started/readme.adoc[getting started tutorial].\n\nNOTE: In Jason 3.2 no IDE is included in Jason distribution. A link:jason-cli[command line interpreter] is now provided.\n\n=== For Jason developers\n\n----\ngit clone https://github.com/jason-lang/jason.git\ncd jason\n./gradlew config // \u003c1\u003e \u003c2\u003e\n----\n\u003c1\u003e the config task builds the JasonCLI (Jason Command Line Interface).\n\u003c2\u003e this task also prints out the commands to set up the `JASON_HOME` and `PATH` variables.\n\nExamples can be run using the `jason` command, for example:\n\n\tcd examples/domestic-robot\n\tjason DomesticRobot.mas2j \n\nOther useful gradle tasks:\n\n-----\n./gradlew jar     // \u003c1\u003e\n./gradlew doc     // \u003c2\u003e\n./gradlew clean   // \u003c3\u003e\n./gradlew release // \u003c4\u003e\n-----\n\u003c1\u003e generates a new jar files.\n\u003c2\u003e generates the javadoc and transforms asciidoc files into html (Docker must be running for the latter).\n\u003c3\u003e cleans all generated files.\n\u003c4\u003e produces a zip file in `build/distributions` to be distributed to users (including the executable of JasonCLI).\n\nYou can use your IDE to change the Jason implementation by importing the Gradle project.\n\n== Jason as a Library\n\nYou can add Jason in your Gradle project with:\n\n----\ndependencies {\n    implementation 'io.github.jason-lang:jason-interpreter:3.2.0'\n}\n----","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjason-lang%2Fjason","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjason-lang%2Fjason","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjason-lang%2Fjason/lists"}