{"id":28200049,"url":"https://github.com/flock-community/aigentic","last_synced_at":"2026-03-04T05:32:57.383Z","repository":{"id":235759374,"uuid":"791132993","full_name":"flock-community/aigentic","owner":"flock-community","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-22T15:11:50.000Z","size":19171,"stargazers_count":19,"open_issues_count":2,"forks_count":1,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-09-22T17:20:47.772Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flock-community.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":".github/CODEOWNERS","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":"2024-04-24T06:45:43.000Z","updated_at":"2025-09-22T15:07:54.000Z","dependencies_parsed_at":"2024-05-18T13:23:08.367Z","dependency_job_id":"0c5cd559-92b2-49ad-bb44-53950bb815f3","html_url":"https://github.com/flock-community/aigentic","commit_stats":null,"previous_names":["flock-community/aigentic"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/flock-community/aigentic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flock-community%2Faigentic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flock-community%2Faigentic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flock-community%2Faigentic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flock-community%2Faigentic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flock-community","download_url":"https://codeload.github.com/flock-community/aigentic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flock-community%2Faigentic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278366702,"owners_count":25975102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"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":[],"created_at":"2025-05-16T20:10:28.324Z","updated_at":"2025-10-04T20:17:19.761Z","avatar_url":"https://github.com/flock-community.png","language":"Kotlin","funding_links":[],"categories":["人工智能"],"sub_categories":["代理框架"],"readme":"[![stability-wip](https://img.shields.io/badge/stability-wip-lightgrey.svg)](https://github.com/mkenney/software-guides/blob/master/STABILITY-BADGES.md#work-in-progress)\n![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/flock-community/aigentic/build.yml)\n[![Maven Central](https://img.shields.io/maven-central/v/community.flock.aigentic/http-tools?color=blue\u0026label=Download)](https://central.sonatype.com/namespace/community.flock.aigentic)\n[![License](https://img.shields.io/github/license/flock-community/aigentic?color=yellow)](LICENSE)\n[![Documentation](https://img.shields.io/badge/docs-aigentic.io-a97bff.svg?logo=kotlin)](https://aigentic.io)\n\n# Aigentic: Streamline Your LLM Development Journey\n\nVisit **[aigentic.io](https://aigentic.io)** for a complete overview.\n\nAigentic is a Kotlin Multiplatform library that provides a powerful DSL for building and integrating AI agents into applications. It streamlines the process of creating, deploying, and managing LLM agents within your software ecosystem.\n\n## Features\n\n- **Intuitive Kotlin DSL** for agent creation and management\n- **Model Agnostic** - supports OpenAI, Gemini, Ollama, VertexAI, and more\n- **Type-Safe Tools** with @AigenticParameter annotation\n- **Comprehensive Integration** with OpenAPI specifications\n- **Cross-Platform** - works on JVM, Android, iOS, and JavaScript\n\n\nCreate agents in a fully type-safe way:\n\n```kotlin\n@AigenticParameter\ndata class WeatherRequest(val location: String)\n\n@AigenticParameter\ndata class WeatherResponse(\n    val temperature: String,\n    val conditions: String,\n    val location: String\n)\n\nval agent = agent\u003cString, WeatherResponse\u003e {\n    openAIModel {\n        apiKey(\"YOUR_API_KEY\")\n        modelIdentifier(OpenAIModelIdentifier.GPT4O)\n    }\n    \n    task(\"Provide weather information\") {\n        addInstruction(\"You are a helpful weather assistant\")\n        addInstruction(\"Use the getWeather tool to fetch current weather conditions\")\n    }\n    \n    // Add a weather lookup tool\n    addTool(\"getWeather\", \"Get current weather for a location\") { req: WeatherRequest -\u003e\n        WeatherResponse(\n            temperature = \"22°C\",\n            conditions = \"Partly cloudy\",\n            location = req.location\n        )\n    }\n}\n\nval run = agent.start(\"What's the weather like in Amsterdam?\")\n```\n\n## Documentation\n\nFor complete documentation, examples, and guides, visit **[aigentic.io](https://aigentic.io)**\n\n- [Getting Started](https://aigentic.io/docs/getting-started)\n- [Agent DSL](https://aigentic.io/docs/dsl/agent)\n- [Tools \u0026 Integrations](https://aigentic.io/docs/dsl/tools)\n- [Provider Configuration](https://aigentic.io/docs/dsl/providers)\n\n## Examples\n\nExplore ready-to-use examples in the [Aigentic Initializr repository](https://github.com/flock-community/aigentic-initializr) or check our [example projects](src/examples/).\n\n## Development\n\n### Using Snapshots\n\nTo use SNAPSHOT versions, add the Sonatype snapshot repository:\n\n```kotlin\nrepositories {\n    mavenCentral()\n    maven { url = uri(\"https://central.sonatype.com/repository/maven-snapshots/\") }\n}\n```\n\n### Building\n\n```bash\n./gradlew build\n```\n\n## License\n\nAigentic is released under the MIT License. See [LICENSE](LICENSE) for details.\n\n## Support\n\nFor questions, issues, or feature requests:\n- 📖 Visit [aigentic.io](https://aigentic.io) for documentation\n- 🐛 Open an issue on our [GitHub repository](https://github.com/flock-community/aigentic/issues)\n- 📧 Contact us at [info@aigentic.io](mailto:info@aigentic.io?subject=Aigentic)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflock-community%2Faigentic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflock-community%2Faigentic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflock-community%2Faigentic/lists"}