Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\LlmsTxtGenerator;

defined( 'ABSPATH' ) || exit;

class LlmsTxtFileHelper {

    public const HOSTINGER_LLMSTXT_FILENAME = 'llms.txt';

    public function is_user_generated_file(): bool {
        if ( ! $this->llmstxt_file_exists() ) {
            return false;
        }

        $content = $this->get_content();

        if ( $content === false ) {
            return false;
        }

        return ! str_contains( $content, LlmsTxtGenerator::HOSTINGER_LLMSTXT_SIGNATURE );
    }

    public function get_content(): string {
        global $wp_filesystem;
        $this->init_wp_filesystem();
        return $wp_filesystem->get_contents( $this->get_llmstxt_file_path() );
    }

    public function create( string $content ): void {
        global $wp_filesystem;
        $this->init_wp_filesystem();
        $wp_filesystem->put_contents( $this->get_llmstxt_file_path(), $content );
    }

    public function delete(): void {
        if ( $this->llmstxt_file_exists() && ! $this->is_user_generated_file() ) {
            global $wp_filesystem;
            $this->init_wp_filesystem();
            $wp