← Back to search
40
Partial
Agentic Readiness Score
+25 llms.txt +15 structured API missing +20 ai-plugin
Raise this score to 95+
We ship the 6-file GEO uplift as a pull request against your repo. Flat fee, turnaround under 72 hours.
Fix this for $199 →
developer llms-txtapi

Agentic Signals

📄
Found
🤖
ai-plugin.json
Not found
📖
OpenAPI Spec
Not found
🔗
Structured API
Found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 40/100

            

llms.txt Content

> ## Documentation Index > Fetch the complete documentation index at: https://learn.social.plus/llms.txt > Use this file to discover all available pages before exploring further. # Home > Welcome to the social.plus documentation <div className="hero-section"> <div className="hero-content"> <div className="hero-text"> <h1 className="hero-title">Build with social.plus</h1> <p className="hero-description"> Get started with social.plus SDKs, UIKits, and APIs to integrate powerful social features into your application - fast, flexible, and built for scale. </p> </div> <div className="search-container"> <div className="search-box" id="custom-search-trigger" onclick="console.log('DIRECT CLICK DETECTED'); triggerSearch();"> <span className="search-icon">🔍</span> <input type="text" placeholder="Search..." className="search-input" readOnly /> <span className="search-shortcut">⌘K</span> </div> </div> <script dangerouslySetInnerHTML={{__html: ` console.log('Script is loading...'); window.triggerSearch = function() { console.log('triggerSearch called!'); // Method 1: Try to find and examine all buttons first const allButtons = Array.from(document.querySelectorAll('button')); console.log('All buttons on page:', allButtons.map(b => ({ element: b, text: b.textContent?.trim(), ariaLabel: b.getAttribute('aria-label'), className: b.className, id: b.id, dataset: Object.assign({}, b.dataset) }))); // Method 2: Try to find search in different ways const searchCandidates = [ document.querySelector('button[aria-label*="Search"]'), document.querySelector('button[aria-label*="search"]'), document.querySelector('.DocSearch-Button'), document.querySelector('[data-search]'), document.querySelector('[role="search"] button'), document.querySelector('input[type="search"]'), ...