https://github.com/llm-agents-php/agent-site-status-checker
The Site Status Checker Agent is a powerful and flexible tool designed to monitor and report on the status of websites.
https://github.com/llm-agents-php/agent-site-status-checker
llm llm-agent llm-tools php php8
Last synced: about 1 year ago
JSON representation
The Site Status Checker Agent is a powerful and flexible tool designed to monitor and report on the status of websites.
- Host: GitHub
- URL: https://github.com/llm-agents-php/agent-site-status-checker
- Owner: llm-agents-php
- License: mit
- Created: 2024-08-26T16:07:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T08:41:29.000Z (almost 2 years ago)
- Last Synced: 2025-03-23T22:13:33.341Z (over 1 year ago)
- Topics: llm, llm-agent, llm-tools, php, php8
- Language: PHP
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Site Status Checker Agent 🕵️♂️
[](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)
[](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)
[](https://packagist.org/packages/llm-agents-php/agent-site-status-checker)
Hey there! 👋 This package gives you a cool Site Status Checker Agent for your LLM Agents project.

## What's this all about? 🤔
- Check if a site is up and running 🏃♂️
- Dig up DNS info 🔍
- Run ping tests 🏓
- Give you the lowdown on why a site might be offline 😴
## Class Diagram 📊
Here's a quick look at how everything fits together:
```mermaid
classDiagram
class SiteStatusCheckerAgent {
+create() : self
}
class AgentAggregate {
<>
}
class CheckSiteAvailabilityTool {
+execute(object) : string
}
class GetDNSInfoTool {
+execute(object) : string
}
class PerformPingTestTool {
+execute(object) : string
}
class Tool {
<>
}
SiteStatusCheckerAgent --|> AgentAggregate
CheckSiteAvailabilityTool --|> Tool
GetDNSInfoTool --|> Tool
PerformPingTestTool --|> Tool
SiteStatusCheckerAgent ..> CheckSiteAvailabilityTool
SiteStatusCheckerAgent ..> GetDNSInfoTool
SiteStatusCheckerAgent ..> PerformPingTestTool
```
## Let's get started! 🚀
### Installation
First things first, let's get this package installed:
```bash
composer require llm-agents/agent-site-status-checker
```
### Setup in Spiral Framework
To get the Site Status Checker Agent up and running in your Spiral Framework project, you need to register its
bootloader.
**Here's how:**
1. Open up your `app/src/Application/Kernel.php` file.
2. Add the bootloader like this:
```php
public function defineBootloaders(): array
{
return [
// ... other bootloaders ...
\LLM\Agents\Agent\SiteStatusChecker\Integrations\Spiral\SiteStatusCheckerBootloader::class,
];
}
```
And that's it! Your Spiral app is now ready to use the agent.
## Want to help out? 🤝
We love contributions! If you've got ideas to make this agent even cooler, here's how you can chip in:
1. Fork the repo
2. Make your changes
3. Create a new Pull Request
Just make sure your code is clean, well-commented, and follows PSR-12 coding standards.
## License 📄
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
That's all, folks! If you've got any questions or run into any trouble, don't hesitate to open an issue.