| @@ -57,9 +57,11 @@ | ||
| 57 | 57 | * `Require-Attribution:` directives that state what agents may do with the |
| 58 | 58 | * content, rather than describing the content itself (#160 in Pro). |
| 59 | 59 | * |
| 60 | 60 | * Schema: |
| 61 | - * usage_policy bool May publish usage-policy directives in llms.txt. | |
| 61 | + * usage_policy bool May publish usage-policy directives in llms.txt. | |
| 62 | + * full_document bool May publish llms-full.txt, the full-content | |
| 63 | + * companion document (thinkrank-pro#171). | |
| 62 | 64 | * |
| 63 | 65 | * @since 2.5.0 |
| 64 | 66 | * |
| 65 | 67 | * @return array Capability map. |
| @@ -65,9 +67,10 @@ | ||
| 65 | 67 | * @return array Capability map. |
| 66 | 68 | */ |
| 67 | 69 | public static function llms_txt(): array { |
| 68 | 70 | $defaults = [ |
| 69 | - 'usage_policy' => false, | |
| 71 | + 'usage_policy' => false, | |
| 72 | + 'full_document' => false, | |
| 70 | 73 | ]; |
| 71 | 74 | |
| 72 | 75 | /** |
| 73 | 76 | * Filter the llms.txt capability map. |