> ## Documentation Index
> Fetch the complete documentation index at: https://docs.llmtag.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Frequently Asked Questions

> Common questions and answers about the LLMTAG protocol and WordPress plugin

## General Questions

### What is LLMTAG?

LLMTAG is a new, open standard designed to be the "robots.txt for the AI era." It allows website publishers to communicate their content usage policies directly to AI agents in a machine-readable format.

<Info>
  Think of it as a way to tell AI systems exactly how they can and cannot use your content, just like robots.txt tells web crawlers which pages they can access.
</Info>

### How is LLMTAG different from robots.txt?

<Columns cols={2}>
  <Card title="robots.txt" icon="robot">
    **Purpose:** Controls **access** to URLs
    **Question:** "Can a bot access this page?"
    **Answer:** "Yes" or "No"
  </Card>

  <Card title="llmtag.txt" icon="shield">
    **Purpose:** Controls **usage** of content
    **Question:** "What can you do with this content?"
    **Answer:** Detailed usage policies
  </Card>
</Columns>

### Do I need programming knowledge to use LLMTAG?

**No!** The `llmtag.txt` file is a simple text file that follows a straightforward format. Anyone can create and understand it without technical expertise.

<Note>
  For WordPress users, our plugin makes it even easier with a user-friendly interface that generates the file automatically.
</Note>

### Is LLMTAG legally binding?

LLMTAG is a technical standard that communicates your preferences to AI agents. While it's not a legal document itself, it can be referenced in terms of service, copyright notices, and other legal frameworks.

<Warning>
  Always consult with legal professionals for specific legal advice regarding content protection and AI usage policies.
</Warning>

## Technical Questions

### Where do I place the llmtag.txt file?

Place the `llmtag.txt` file in your website's root directory, the same location as your `robots.txt` file:

```
https://yourdomain.com/llmtag.txt
```

### What happens if I don't have a llmtag.txt file?

If you don't have a `llmtag.txt` file, compliant AI agents will apply default policies (typically allowing AI training and basic usage). This encourages participation without breaking functionality.

### Can I have different policies for different parts of my website?

**Yes!** LLMTAG supports path-based policies:

```txt theme={null}
# Global policy
spec_version: 3.0
ai_training_data: disallow

# Allow AI training for blog content
Path: /blog/
ai_training_data: allow

# Block AI training for premium content
Path: /premium/
ai_training_data: disallow
```

### How do I know if AI agents are respecting my policies?

<Columns cols={2}>
  <Card title="WordPress Plugin" icon="wordpress">
    **Analytics Dashboard:** Track blocked requests and AI agent activity
    **Real-time Monitoring:** See which agents are accessing your content
    **Reports:** Detailed analytics and compliance reports
  </Card>

  <Card title="Manual Monitoring" icon="eye">
    **Server Logs:** Check your server logs for AI agent activity
    **Third-party Tools:** Use analytics tools to monitor traffic patterns
    **Regular Reviews:** Periodically review your content's AI usage
  </Card>
</Columns>

### What if an AI agent doesn't respect my llmtag.txt file?

<Steps>
  <Step title="Identify the Agent">
    Use your server logs or analytics to identify non-compliant agents.
  </Step>

  <Step title="Contact the Company">
    Reach out to the AI company to report non-compliance.
  </Step>

  <Step title="Use Active Blocking">
    Use our WordPress plugin's active blocking feature to prevent access.
  </Step>

  <Step title="Legal Action">
    Consider legal action if the violation is significant and ongoing.
  </Step>
</Steps>

## WordPress Plugin Questions

### Is the WordPress plugin free?

**Yes!** The LLMTAG WordPress plugin is completely free and open source. We offer:

* **Free Version:** Full llmtag.txt generation and basic AI agent blocking
* **Pro Features:** Advanced analytics, custom rules, and priority support (coming soon)

### Will the plugin slow down my website?

**Minimal impact.** The plugin is optimized for performance and typically adds less than 10ms to page load times. Most users won't notice any difference.

<Info>
  The plugin uses efficient caching and optimized database queries to minimize performance impact.
</Info>

### Does the plugin work with caching plugins?

**Yes!** The plugin is compatible with all major WordPress caching plugins:

* **WP Rocket**
* **W3 Total Cache**
* **WP Super Cache**
* **LiteSpeed Cache**
* **Cloudflare**

<Note>
  The plugin automatically handles cache invalidation when settings are updated.
</Note>

### Can I customize the llmtag.txt file generated by the plugin?

**Yes!** The plugin offers multiple customization options:

* **Basic Mode:** Simple global policies
* **Standard Mode:** Path-based and agent-specific rules
* **Advanced Mode:** Full customization with custom directives

### What AI agents does the plugin block?

The plugin blocks 60+ known AI agents including:

<Columns cols={2}>
  <Card title="OpenAI" icon="robot">
    * GPTBot
    * ChatGPT-User
    * OpenAI-Web
  </Card>

  <Card title="Google AI" icon="google">
    * Google-Extended
    * Bard-Web
    * Gemini-Crawler
  </Card>

  <Card title="Anthropic" icon="brain">
    * Claude-Web
    * Anthropic-Bot
  </Card>

  <Card title="Other Services" icon="cloud">
    * PerplexityBot
    * Copilot-Web
    * Various AI writing tools
  </Card>
</Columns>

## SEO and Performance Questions

### Will LLMTAG hurt my SEO?

**No!** LLMTAG only blocks AI agents, not search engines like Google, Bing, or Yahoo. Your content will still be indexed and ranked normally.

<Info>
  In fact, LLMTAG can help your SEO by ensuring that AI-generated content doesn't compete with your original content.
</Info>

### Does LLMTAG affect Google Search Console?

**No impact.** LLMTAG doesn't interfere with Google Search Console or other SEO tools. Your search performance metrics will remain unchanged.

### Can I use LLMTAG with Google Analytics?

**Yes!** LLMTAG is fully compatible with Google Analytics and other analytics tools. You can even integrate blocking events with GA4 for enhanced tracking.

## Legal and Compliance Questions

### Is LLMTAG GDPR compliant?

**Yes!** LLMTAG is designed with privacy in mind:

* **No Personal Data Collection:** The protocol doesn't collect personal information
* **Transparent Policies:** Clear communication of data usage policies
* **User Control:** Publishers maintain full control over their content policies

### Can I use LLMTAG for copyrighted content?

**Yes!** LLMTAG can help protect copyrighted content by clearly communicating usage restrictions to AI agents. However, it's not a substitute for proper copyright protection.

<Warning>
  Always consult with legal professionals for specific copyright and intellectual property advice.
</Warning>

### What about fair use and AI training?

LLMTAG allows you to specify your preferences regarding AI training, but it doesn't override existing legal frameworks like fair use. It's a technical standard that communicates your preferences.

## Implementation Questions

### How long does it take to implement LLMTAG?

<Columns cols={2}>
  <Card title="Manual Implementation" icon="file">
    **Time:** 5-10 minutes
    **Steps:** Create file, upload, test
    **Difficulty:** Easy
  </Card>

  <Card title="WordPress Plugin" icon="wordpress">
    **Time:** 2-5 minutes
    **Steps:** Install, configure, activate
    **Difficulty:** Very easy
  </Card>
</Columns>

### Do I need to update my llmtag.txt file regularly?

**Not necessarily.** Your `llmtag.txt` file only needs updates when:

* You change your AI usage policies
* You add new content sections with different policies
* You want to allow or block specific AI agents
* The LLMTAG specification is updated

### Can I test my llmtag.txt file?

**Yes!** You can test your implementation by:

<Steps>
  <Step title="Check File Accessibility">
    Visit `https://yourdomain.com/llmtag.txt` in your browser.
  </Step>

  <Step title="Validate Syntax">
    Use our online validator at [validator.llmtag.org](https://validator.llmtag.org).
  </Step>

  <Step title="Test with AI Agents">
    Use tools to simulate AI agent requests and verify blocking.
  </Step>
</Steps>

## Troubleshooting Questions

### My llmtag.txt file isn't accessible. What's wrong?

<AccordionGroup>
  <Accordion title="File not found (404 error)">
    **Possible causes:**

    * File not uploaded to correct location
    * Incorrect file name (must be exactly "llmtag.txt")
    * Server configuration issues

    **Solutions:**

    * Verify file is in root directory
    * Check file name spelling
    * Contact hosting provider
  </Accordion>

  <Accordion title="Access denied (403 error)">
    **Possible causes:**

    * File permissions issues
    * Server security settings
    * .htaccess rules blocking access

    **Solutions:**

    * Check file permissions (should be 644)
    * Review .htaccess rules
    * Contact hosting provider
  </Accordion>

  <Accordion title="Server error (500 error)">
    **Possible causes:**

    * Server configuration issues
    * Plugin conflicts
    * Corrupted file

    **Solutions:**

    * Check server error logs
    * Deactivate other plugins temporarily
    * Recreate the file
  </Accordion>
</AccordionGroup>

### The WordPress plugin isn't blocking AI agents. Why?

<Steps>
  <Step title="Check Protection Status">
    Verify that protection is enabled in the plugin dashboard.
  </Step>

  <Step title="Update Agent Database">
    Ensure the AI agent database is up to date.
  </Step>

  <Step title="Check Server Configuration">
    Verify that .htaccess rules are properly configured.
  </Step>

  <Step title="Test with Different Agents">
    Test blocking with various AI agent user-agents.
  </Step>
</Steps>

### My analytics aren't showing data. What should I do?

<AccordionGroup>
  <Accordion title="No data after 24 hours">
    **Possible causes:**

    * No AI agents accessing the site
    * Analytics not enabled
    * Database issues

    **Solutions:**

    * Wait for AI agent traffic
    * Enable analytics in settings
    * Check database connectivity
  </Accordion>

  <Accordion title="Incomplete data">
    **Possible causes:**

    * Caching issues
    * Partial blocking configuration
    * Time zone problems

    **Solutions:**

    * Clear all caches
    * Review blocking configuration
    * Check time zone settings
  </Accordion>
</AccordionGroup>

## Support Questions

### Where can I get help?

<CardGroup cols={2}>
  <Card title="Documentation" icon="book" href="/">
    Complete documentation and guides
  </Card>

  <Card title="Community Discord" icon="discord" href="https://discord.gg/llmtag">
    Real-time community support
  </Card>

  <Card title="GitHub Discussions" icon="github" href="https://github.com/llmtag/llmtag/discussions">
    Technical discussions and Q\&A
  </Card>

  <Card title="Email Support" icon="envelope" href="mailto:support@llmtag.org">
    Professional support for complex issues
  </Card>
</CardGroup>

### How quickly will I get a response?

<Columns cols={2}>
  <Card title="Community Support" icon="users">
    **Discord:** Usually within hours
    **GitHub:** 1-3 business days
    **Best for:** General questions and community help
  </Card>

  <Card title="Professional Support" icon="headset">
    **Email:** 1-2 business days
    **Priority:** Available for Pro users
    **Best for:** Complex technical issues
  </Card>
</Columns>

### Can I request new features?

**Absolutely!** We welcome feature requests:

<Steps>
  <Step title="Check Existing Requests">
    Search GitHub Issues to see if your feature has been requested.
  </Step>

  <Step title="Create New Issue">
    Create a detailed feature request with use cases and examples.
  </Step>

  <Step title="Vote on Features">
    Vote on existing feature requests to help prioritize development.
  </Step>

  <Step title="Contribute Code">
    Consider contributing code for features you need.
  </Step>
</Steps>

## Still Have Questions?

<Card title="Can't find what you're looking for?" icon="question" href="mailto:support@llmtag.org" horizontal>
  **Contact our support team** • **Join our Discord community** • **Check GitHub discussions**
</Card>
