{"id":15026825,"url":"https://github.com/llm-agents-php/agent-site-status-checker","last_synced_at":"2025-04-09T20:21:41.713Z","repository":{"id":254866257,"uuid":"847825294","full_name":"llm-agents-php/agent-site-status-checker","owner":"llm-agents-php","description":"The Site Status Checker Agent is a powerful and flexible tool designed to monitor and report on the status of websites.","archived":false,"fork":false,"pushed_at":"2024-09-07T08:41:29.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T22:13:33.341Z","etag":null,"topics":["llm","llm-agent","llm-tools","php","php8"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"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/llm-agents-php.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}},"created_at":"2024-08-26T16:07:08.000Z","updated_at":"2024-09-07T08:41:24.000Z","dependencies_parsed_at":"2024-08-28T05:48:54.609Z","dependency_job_id":null,"html_url":"https://github.com/llm-agents-php/agent-site-status-checker","commit_stats":null,"previous_names":["llm-agents-php/agent-site-status-checker"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llm-agents-php%2Fagent-site-status-checker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llm-agents-php%2Fagent-site-status-checker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llm-agents-php%2Fagent-site-status-checker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/llm-agents-php%2Fagent-site-status-checker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/llm-agents-php","download_url":"https://codeload.github.com/llm-agents-php/agent-site-status-checker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248104446,"owners_count":21048339,"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","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":["llm","llm-agent","llm-tools","php","php8"],"created_at":"2024-09-24T20:05:12.369Z","updated_at":"2025-04-09T20:21:41.663Z","avatar_url":"https://github.com/llm-agents-php.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Site Status Checker Agent 🕵️‍♂️\n\n[![PHP](https://img.shields.io/packagist/php-v/llm-agents-php/agent-site-status-checker.svg?style=flat-square)](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/llm-agents-php/agent-site-status-checker.svg?style=flat-square)](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)\n[![Total Downloads](https://img.shields.io/packagist/dt/llm-agents-php/agent-site-status-checker.svg?style=flat-square)](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)\n\nHey there! 👋 This package gives you a cool Site Status Checker Agent for your LLM Agents project.\n\n![site-status-checker](https://github.com/user-attachments/assets/e363dd44-7dff-413e-a5cd-c2eebcf62b7e)\n\n## What's this all about? 🤔\n\n- Check if a site is up and running 🏃‍♂️\n- Dig up DNS info 🔍\n- Run ping tests 🏓\n- Give you the lowdown on why a site might be offline 😴\n\n## Class Diagram 📊\n\nHere's a quick look at how everything fits together:\n\n```mermaid\nclassDiagram\n    class SiteStatusCheckerAgent {\n        +create() : self\n    }\n    class AgentAggregate {\n        \u003c\u003cinterface\u003e\u003e\n    }\n    class CheckSiteAvailabilityTool {\n        +execute(object) : string\n    }\n    class GetDNSInfoTool {\n        +execute(object) : string\n    }\n    class PerformPingTestTool {\n        +execute(object) : string\n    }\n    class Tool {\n        \u003c\u003cabstract\u003e\u003e\n    }\n    SiteStatusCheckerAgent --|\u003e AgentAggregate\n    CheckSiteAvailabilityTool --|\u003e Tool\n    GetDNSInfoTool --|\u003e Tool\n    PerformPingTestTool --|\u003e Tool\n    SiteStatusCheckerAgent ..\u003e CheckSiteAvailabilityTool\n    SiteStatusCheckerAgent ..\u003e GetDNSInfoTool\n    SiteStatusCheckerAgent ..\u003e PerformPingTestTool\n```\n\n## Let's get started! 🚀\n\n### Installation\n\nFirst things first, let's get this package installed:\n\n```bash\ncomposer require llm-agents/agent-site-status-checker\n```\n\n### Setup in Spiral Framework\n\nTo get the Site Status Checker Agent up and running in your Spiral Framework project, you need to register its\nbootloader.\n\n**Here's how:**\n\n1. Open up your `app/src/Application/Kernel.php` file.\n2. Add the bootloader like this:\n   ```php\n   public function defineBootloaders(): array\n   {\n       return [\n           // ... other bootloaders ...\n           \\LLM\\Agents\\Agent\\SiteStatusChecker\\Integrations\\Spiral\\SiteStatusCheckerBootloader::class,\n       ];\n   }\n   ```\n\nAnd that's it! Your Spiral app is now ready to use the agent.\n\n## Want to help out? 🤝\n\nWe love contributions! If you've got ideas to make this agent even cooler, here's how you can chip in:\n\n1. Fork the repo\n2. Make your changes\n3. Create a new Pull Request\n\nJust make sure your code is clean, well-commented, and follows PSR-12 coding standards.\n\n## License 📄\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\nThat's all, folks! If you've got any questions or run into any trouble, don't hesitate to open an issue.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllm-agents-php%2Fagent-site-status-checker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fllm-agents-php%2Fagent-site-status-checker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fllm-agents-php%2Fagent-site-status-checker/lists"}