{"id":50878375,"url":"https://github.com/fmichel/MaDKit","last_synced_at":"2026-07-03T02:01:15.246Z","repository":{"id":3021526,"uuid":"4041189","full_name":"fmichel/MaDKit","owner":"fmichel","description":"Multi-agent systems Development Kit - version 6","archived":false,"fork":false,"pushed_at":"2025-04-15T16:48:46.000Z","size":20381,"stargazers_count":43,"open_issues_count":0,"forks_count":12,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-04-15T17:44:47.340Z","etag":null,"topics":["agent-based","agent-based-modelling","agent-based-simulation","agent-oriented-programming","artificial-intelligence","multi-agent","simulation"],"latest_commit_sha":null,"homepage":"http://www.madkit.net","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fmichel.png","metadata":{"files":{"readme":"README.md","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}},"created_at":"2012-04-16T13:43:26.000Z","updated_at":"2025-04-15T16:48:50.000Z","dependencies_parsed_at":"2025-02-14T13:49:05.797Z","dependency_job_id":null,"html_url":"https://github.com/fmichel/MaDKit","commit_stats":null,"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"purl":"pkg:github/fmichel/MaDKit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmichel%2FMaDKit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmichel%2FMaDKit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmichel%2FMaDKit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmichel%2FMaDKit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fmichel","download_url":"https://codeload.github.com/fmichel/MaDKit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fmichel%2FMaDKit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35069183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-03T02:00:05.635Z","response_time":110,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-based","agent-based-modelling","agent-based-simulation","agent-oriented-programming","artificial-intelligence","multi-agent","simulation"],"created_at":"2026-06-15T12:00:25.793Z","updated_at":"2026-07-03T02:01:15.237Z","avatar_url":"https://github.com/fmichel.png","language":"Java","funding_links":[],"categories":["人工智能"],"sub_categories":["微服务框架"],"readme":"\u003ch1 align=\"center\"\u003eMaDKit: Multi-agent systems Development Kit\u003c/h1\u003e\n\u0026emsp;\n\n[![Maven Central](https://img.shields.io/maven-central/v/io.github.fmichel/madkit.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/io.github.fmichel/madkit)\n[![JavaDoc](https://img.shields.io/badge/JavaDoc-API-green)](https://madkit.net/javadoc)\n[![Java Version](https://img.shields.io/badge/java-23+-green.svg)](https://www.oracle.com/java/technologies/javase-jdk23-downloads.html)\n[![Gradle](https://img.shields.io/badge/gradle-8.12+-green.svg)](https://gradle.org/)\n[![License](https://img.shields.io/badge/License-CeCILL--C-green)](http://www.cecill.info/index.en.html)\n\n**Open source Java API for developing and simulating Multi-Agent Systems** ([MAS](https://en.wikipedia.org/wiki/Multi-agent_system))\n\nMaDKit is designed as a lightweight Java library for developing distributed applications and simulations using the multiagent paradigm.\n\n## Features\n\n* Artificial agents creation and life cycle management\n* An organizational infrastructure for communication between agents, structuring the application\n* High heterogeneity in agent architectures: No predefined agent model\n* Multi-Agent based simulation and simulator authoring tools\n\n## Approach\n\nIn contrast to agent-centered approaches, MaDKit follows an organization-centered approach ([OCMAS][1]): There is no predefnied agent model in MaDKit. \n\nEspecially, MaDKit does not enforce any consideration about the internal structure of agents, thus allowing a developer to freely implements its own agent architectures. \n\nSo, MaDKit is built upon the AGR (Agent/Group/Role) organizational model: Agents play roles in groups, and thus create artificial societies.\n \n[1]: http://www.lirmm.fr/~fmichel/publi/pdfs/ferber04ocmas.pdf\n\n## Simulation authoring\n\nMaDKit is designed to provide tools for easily create agent-based simulation engines from scratch, so that one can achieve particular requirements.\n\nIt also provides default simulation settings that can be used and extended to quickly build an agent-based simulation, only focusing on the agent modeling part.\n\nIts conceptual approach to multi-agent based simulation mainly relies on this [research paper](http://www.lirmm.fr/~fmichel/publi/pdfs/michel09mas_and_ms.pdf).\n\n## Programming with MaDKit\nJDK 23+ is required. \n\nUsing MaDKit can be done by [declaring it as a dependency using your favorite build tool](https://mvnrepository.com/artifact/io.github.fmichel/madkit).\n\nFor instance, with Gradle:\n\n```groovy\nimplementation \"io.github.fmichel:madkit:6.0.1\"\n```\n\n## Getting Started\nThis repo contains 3 sub projects that give an hint about what can be done with MaDKit:\n\n* MDK-simu-template: A simple example of a simulation using default classes and settings\n* MDK-marketorg-app: A classic bid/offer multi-agent application\n* MDK-bees-app: A complete simulation example \n\n\n## More information\n* [JavaDoc API Reference](https://madkit.net/javadoc)\n* [Official Homepage](http://www.madkit.net) V.5\n* [Tutorials](http://www.madkit.net/madkit/tutorials) V.5\n* [Documentation](http://www.madkit.net/madkit/documents.php) V.5\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Added some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=MaDKit/src/main/resources/madkit/images/madkit_logo.png width=9% /\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffmichel%2FMaDKit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffmichel%2FMaDKit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffmichel%2FMaDKit/lists"}