From 930aceeef19ff0764bfc435200dab7ae48c35ac6 Mon Sep 17 00:00:00 2001 From: Ash Shaw Date: Wed, 22 Jul 2026 17:34:37 +0200 Subject: [PATCH 01/16] feat: implement version-based milestone allocation strategy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implement automated milestone allocation and project routing: - Create .github/project-routes.yml with version-based milestone config - Add milestone-allocation.cjs helper module for allocation logic - Implement allocate-milestone.cjs script for auto-allocating issues to milestones - Implement check-milestone-capacity.cjs for capacity warnings - Extend metadata-governance.yml workflow to call new allocation steps - Fix yaml.load() security issue (use safeLoad for simple data structures) Milestone strategy: - Version-based approach (v1.0–v1.6) aligned with release cycles - Epic labels for strategic grouping (separate from milestones) - Automatic allocation based on issue type and labels - Capacity warnings when milestones exceed thresholds Related: #1112, #1079 Co-Authored-By: Claude Haiku 4.5 --- .github/project-routes.yml | 90 ++++++++ .github/workflows/metadata-governance.yml | 16 ++ .../agents/includes/allocate-milestone.cjs | 170 +++++++++++++++ .../includes/check-milestone-capacity.cjs | 194 ++++++++++++++++++ scripts/agents/includes/issue-pr-metadata.cjs | 2 +- .../agents/includes/milestone-allocation.cjs | 118 +++++++++++ 6 files changed, 589 insertions(+), 1 deletion(-) create mode 100644 .github/project-routes.yml create mode 100644 scripts/agents/includes/allocate-milestone.cjs create mode 100644 scripts/agents/includes/check-milestone-capacity.cjs create mode 100644 scripts/agents/includes/milestone-allocation.cjs diff --git a/.github/project-routes.yml b/.github/project-routes.yml new file mode 100644 index 000000000..1cfee552c --- /dev/null +++ b/.github/project-routes.yml @@ -0,0 +1,90 @@ +# GitHub Project routing configuration +# Maps issue types, labels, and workflows to target projects +version: "1.0" + +# Default behavior: all .github issues go to this project +default_project: + name: "Core Delivery Board" + url: "https://github.com/orgs/lightspeedwp/projects/33" + description: "LightSpeed .github repository issues and PRs" + +# Routes: fine-grained routing rules (currently all to default, reserved for future expansion) +routes: + # Core delivery: bugs, features, performance improvements, refactoring + - name: "Core Delivery Board" + description: "Features, bugs, refactoring, performance work" + project_url: "https://github.com/orgs/lightspeedwp/projects/33" + filter: + # Match if ANY condition is true (OR logic) + type: [bug, feature, performance, code-refactor] + enabled: true + + # Security and accessibility: kept visible on core board but could split if needed + - name: "Core Delivery Board" + description: "Security and accessibility work" + project_url: "https://github.com/orgs/lightspeedwp/projects/33" + filter: + label: [security, a11y, compliance] + enabled: true + + # Chores and maintenance: all go to core board + - name: "Core Delivery Board" + description: "Maintenance, dependencies, housekeeping" + project_url: "https://github.com/orgs/lightspeedwp/projects/33" + filter: + type: [chore, task] + enabled: true + + # Documentation + - name: "Core Delivery Board" + description: "Documentation and knowledge base updates" + project_url: "https://github.com/orgs/lightspeedwp/projects/33" + filter: + type: [documentation] + enabled: true + +# Milestone allocation rules +# Determines which version milestone new issues should be assigned to +milestone_strategy: + type: "version-based" # Options: version-based, epic-based (only version-based supported) + + # Current active milestones (in release order) + active_milestones: + - v1.0 + - v1.1 + - v1.2 + - v1.3 + - v1.4 + - v1.5 + - v1.6 + + # Default allocation rules for new issues + allocation: + # Issues with these labels get assigned to the next planned version + high_priority_labels: [security, critical-bug, compliance, a11y] + next_milestone: v1.0 + + # Issues with these labels go to the backlog/future + backlog_labels: [research, spike, proof-of-concept, enhancement] + backlog_milestone: null # null = no milestone (unplanned) + + # Default: untagged/uncategorised issues go to this milestone + # Can be null to leave unassigned + default_milestone: v1.0 + + # Capacity warnings + capacity: + # Warn when a milestone has more than this many open issues + warn_threshold: 50 + error_threshold: 100 + + # Exclude certain issue types from capacity warnings + exclude_types: [chore, task, documentation] + +# Epic-to-label mapping (for future use) +# Maps epic identifiers to labels so we can query "all work in epic X" +epics: + project-allocation: "epic:project-allocation" + agent-standards: "epic:agent-standards" + security-hardening: "epic:security-hardening" + accessibility: "epic:accessibility" diff --git a/.github/workflows/metadata-governance.yml b/.github/workflows/metadata-governance.yml index f5144f932..24ea1f938 100644 --- a/.github/workflows/metadata-governance.yml +++ b/.github/workflows/metadata-governance.yml @@ -37,6 +37,22 @@ jobs: ISSUE_FIELDS_CONFIG: .github/issue-fields.yml run: node scripts/agents/includes/issue-pr-metadata.cjs + - name: Allocate issue to version milestone + id: milestone-allocation + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PROJECT_ROUTES_CONFIG: .github/project-routes.yml + GITHUB_EVENT_PATH: ${{ github.event_path }} + run: node scripts/agents/includes/allocate-milestone.cjs + + - name: Check milestone capacity and warn + id: capacity-check + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PROJECT_ROUTES_CONFIG: .github/project-routes.yml + GITHUB_EVENT_PATH: ${{ github.event_path }} + run: node scripts/agents/includes/check-milestone-capacity.cjs + - name: Summarise metadata sync env: METADATA_ASSIGNEE: ${{ steps.metadata.outputs.metadata_assignee }} diff --git a/scripts/agents/includes/allocate-milestone.cjs b/scripts/agents/includes/allocate-milestone.cjs new file mode 100644 index 000000000..8ea3af567 --- /dev/null +++ b/scripts/agents/includes/allocate-milestone.cjs @@ -0,0 +1,170 @@ +#!/usr/bin/env node +/* eslint-disable no-console */ + +const fs = require("fs"); +const path = require("path"); +const { getOctokit } = require("@actions/github"); +const { + readConfig, + getMilestoneForIssue, + getActiveMilestones, +} = require("./milestone-allocation.cjs"); + +function getItemFromEvent(event) { + if (event.pull_request) { + return { + kind: "pull_request", + number: event.pull_request.number, + title: event.pull_request.title || "", + body: event.pull_request.body || "", + labels: Array.isArray(event.pull_request.labels) + ? event.pull_request.labels + : [], + milestone: event.pull_request.milestone || null, + type: event.pull_request.type || null, + }; + } + + return { + kind: "issue", + number: event.issue.number, + title: event.issue.title || "", + body: event.issue.body || "", + labels: Array.isArray(event.issue.labels) ? event.issue.labels : [], + milestone: event.issue.milestone || null, + type: event.issue.type || null, + }; +} + +async function getMilestoneByTitle(github, owner, repo, title) { + if (!title) return null; + + try { + const { data: milestones } = await github.rest.issues.listMilestones({ + owner, + repo, + state: "open", + per_page: 100, + }); + + return milestones.find((m) => m.title === title) || null; + } catch (error) { + console.info(`Could not fetch milestones: ${error.message}`); + return null; + } +} + +async function allocateMilestone({ + github, + owner, + repo, + item, + milestoneTitle, +}) { + if (!milestoneTitle) { + console.info(`#${item.number}: No milestone allocation required (backlog)`); + return null; + } + + // Skip if item already has a milestone + if (item.milestone) { + console.info( + `#${item.number}: Already has milestone '${item.milestone.title}', skipping allocation`, + ); + return item.milestone.title; + } + + try { + const milestone = await getMilestoneByTitle( + github, + owner, + repo, + milestoneTitle, + ); + + if (!milestone) { + console.warn( + `#${item.number}: Milestone '${milestoneTitle}' not found, skipping allocation`, + ); + return null; + } + + await github.rest.issues.update({ + owner, + repo, + issue_number: item.number, + milestone: milestone.number, + }); + + console.info(`#${item.number}: Allocated to milestone '${milestoneTitle}'`); + return milestoneTitle; + } catch (error) { + console.warn( + `#${item.number}: Could not allocate to milestone '${milestoneTitle}': ${error.message}`, + ); + return null; + } +} + +async function run() { + const eventPath = process.env.GITHUB_EVENT_PATH; + const token = process.env.GITHUB_TOKEN; + const repo = process.env.GITHUB_REPOSITORY || ""; + const configPath = process.env.PROJECT_ROUTES_CONFIG + ? path.resolve(process.env.PROJECT_ROUTES_CONFIG) + : path.resolve(".github/project-routes.yml"); + + if (!eventPath) throw new Error("GITHUB_EVENT_PATH is required"); + if (!token) throw new Error("GITHUB_TOKEN is required"); + if (!repo.includes("/")) throw new Error("GITHUB_REPOSITORY is required"); + + const [owner, repoName] = repo.split("/"); + const event = JSON.parse(fs.readFileSync(eventPath, "utf8")); + const config = readConfig(configPath); + const github = getOctokit(token); + const item = getItemFromEvent(event); + + // Only allocate on issue/PR open or reopen (not on edit/sync) + const shouldAllocate = + event.action === "opened" || event.action === "reopened"; + + if (!shouldAllocate) { + console.info( + `#${item.number}: Skipping allocation (action: ${event.action})`, + ); + return { allocated: false, milestone: item.milestone?.title || "" }; + } + + const targetMilestone = getMilestoneForIssue(item, config); + const allocated = await allocateMilestone({ + github, + owner, + repo: repoName, + item, + milestoneTitle: targetMilestone, + }); + + if (process.env.GITHUB_OUTPUT) { + fs.appendFileSync( + process.env.GITHUB_OUTPUT, + [ + `milestone_allocated=${allocated ? "true" : "false"}`, + `milestone_title=${allocated || ""}`, + ].join("\n") + "\n", + ); + } + + return { + allocated: !!allocated, + milestone: allocated || "", + }; +} + +if (require.main === module) { + run().catch((error) => { + console.error(error); + process.exitCode = 1; + }); +} + +module.exports = { allocateMilestone, getMilestoneByTitle }; diff --git a/scripts/agents/includes/check-milestone-capacity.cjs b/scripts/agents/includes/check-milestone-capacity.cjs new file mode 100644 index 000000000..b70d55c81 --- /dev/null +++ b/scripts/agents/includes/check-milestone-capacity.cjs @@ -0,0 +1,194 @@ +#!/usr/bin/env node +/* eslint-disable no-console */ + +const fs = require("fs"); +const path = require("path"); +const { getOctokit } = require("@actions/github"); +const { + readConfig, + checkMilestoneCapacity, + getActiveMilestones, +} = require("./milestone-allocation.cjs"); + +const COMMENT_MARKER = ""; + +function getItemFromEvent(event) { + return { + kind: event.pull_request ? "pull_request" : "issue", + number: event.pull_request + ? event.pull_request.number + : event.issue.number, + }; +} + +async function getMilestoneStats(github, owner, repo, milestoneName) { + try { + const { data: issues } = await github.rest.issues.listForRepo({ + owner, + repo, + milestone: milestoneName, + state: "open", + per_page: 1, + }); + + // Get actual count from headers if available + const linkHeader = issues.headers?.link || ""; + const lastMatch = linkHeader.match(/page=(\d+)>; rel="last"/); + const pageCount = lastMatch ? parseInt(lastMatch[1], 10) : 1; + const estimatedCount = + pageCount > 1 ? pageCount * 30 : Math.min(issues.length, 30); + + return { + milestone: milestoneName, + open_issues: estimatedCount, + }; + } catch (error) { + console.info( + `Could not fetch stats for milestone '${milestoneName}': ${error.message}`, + ); + return null; + } +} + +async function postCapacityWarning(github, owner, repo, number, warnings) { + if (warnings.length === 0) return; + + const lines = [COMMENT_MARKER, "## ⚠️ Milestone Capacity Warning"]; + + for (const warning of warnings) { + const icon = warning.level === "error" ? "🚨" : "⚠️"; + lines.push(`${icon} **${warning.milestone}**: ${warning.message}`); + } + + lines.push( + "", + "_Maintained by milestone capacity monitoring. Consider deferring lower-priority work to future milestones._", + ); + + const body = lines.join("\n"); + + try { + const { data: comments } = await github.rest.issues.listComments({ + owner, + repo, + issue_number: number, + per_page: 100, + }); + + const existing = comments.find( + (c) => c.user?.type === "Bot" && c.body?.includes(COMMENT_MARKER), + ); + + if (existing) { + await github.rest.issues.updateComment({ + owner, + repo, + comment_id: existing.id, + body, + }); + console.info(`Updated capacity warning on #${number}`); + } else { + await github.rest.issues.createComment({ + owner, + repo, + issue_number: number, + body, + }); + console.info(`Created capacity warning on #${number}`); + } + } catch (error) { + console.warn( + `Could not post capacity warning on #${number}: ${error.message}`, + ); + } +} + +async function run() { + const eventPath = process.env.GITHUB_EVENT_PATH; + const token = process.env.GITHUB_TOKEN; + const repo = process.env.GITHUB_REPOSITORY || ""; + const configPath = process.env.PROJECT_ROUTES_CONFIG + ? path.resolve(process.env.PROJECT_ROUTES_CONFIG) + : path.resolve(".github/project-routes.yml"); + + if (!eventPath) throw new Error("GITHUB_EVENT_PATH is required"); + if (!token) throw new Error("GITHUB_TOKEN is required"); + if (!repo.includes("/")) throw new Error("GITHUB_REPOSITORY is required"); + + const [owner, repoName] = repo.split("/"); + const event = JSON.parse(fs.readFileSync(eventPath, "utf8")); + const config = readConfig(configPath); + const github = getOctokit(token); + const item = getItemFromEvent(event); + + // Only check on issue open/reopen (not PR or edit) + if ( + event.pull_request || + (event.action !== "opened" && event.action !== "reopened") + ) { + console.info(`#${item.number}: Skipping capacity check`); + return { checked: false, warnings: [] }; + } + + const activeMilestones = getActiveMilestones(config); + const allWarnings = []; + + // Check capacity for all active milestones + for (const milestoneName of activeMilestones) { + const stats = await getMilestoneStats( + github, + owner, + repoName, + milestoneName, + ); + if (!stats) continue; + + const warnings = checkMilestoneCapacity( + milestoneName, + stats.open_issues, + config, + ); + allWarnings.push(...warnings); + } + + // Post warning if any milestones are at capacity + if (allWarnings.length > 0) { + await postCapacityWarning( + github, + owner, + repoName, + item.number, + allWarnings, + ); + + // Log summary + const errorCount = allWarnings.filter((w) => w.level === "error").length; + const warnCount = allWarnings.filter((w) => w.level === "warn").length; + console.warn( + `Capacity warnings: ${errorCount} error(s), ${warnCount} warning(s)`, + ); + } + + if (process.env.GITHUB_OUTPUT) { + fs.appendFileSync( + process.env.GITHUB_OUTPUT, + [`capacity_checked=true`, `capacity_warnings=${allWarnings.length}`].join( + "\n", + ) + "\n", + ); + } + + return { + checked: true, + warnings: allWarnings, + }; +} + +if (require.main === module) { + run().catch((error) => { + console.error(error); + process.exitCode = 1; + }); +} + +module.exports = { postCapacityWarning, getMilestoneStats }; diff --git a/scripts/agents/includes/issue-pr-metadata.cjs b/scripts/agents/includes/issue-pr-metadata.cjs index 1e3ba17fe..47fc7f401 100644 --- a/scripts/agents/includes/issue-pr-metadata.cjs +++ b/scripts/agents/includes/issue-pr-metadata.cjs @@ -15,7 +15,7 @@ function readJsonFile(filePath) { } function readConfig(configPath) { - return yaml.load(fs.readFileSync(configPath, "utf8")); + return yaml.safeLoad(fs.readFileSync(configPath, "utf8")); } function normaliseTitle(title) { diff --git a/scripts/agents/includes/milestone-allocation.cjs b/scripts/agents/includes/milestone-allocation.cjs new file mode 100644 index 000000000..8bc0356d8 --- /dev/null +++ b/scripts/agents/includes/milestone-allocation.cjs @@ -0,0 +1,118 @@ +#!/usr/bin/env node +/* eslint-disable no-console */ + +const fs = require("fs"); +const path = require("path"); +const yaml = require("js-yaml"); + +function readConfig(configPath) { + const fullPath = path.resolve(configPath); + if (!fs.existsSync(fullPath)) { + throw new Error(`Config file not found: ${fullPath}`); + } + return yaml.safeLoad(fs.readFileSync(fullPath, "utf8")); +} + +function getMilestoneForIssue(issue, config) { + const milestoneStrategy = config?.milestone_strategy || {}; + const allocation = milestoneStrategy.allocation || {}; + const labels = issue.labels.map((l) => l.name || l); + + // Check if issue has a high-priority label + const highPriorityLabels = allocation.high_priority_labels || []; + if ( + highPriorityLabels.some((label) => labels.includes(label)) + ) { + return allocation.next_milestone || "v1.0"; + } + + // Check if issue should go to backlog + const backlogLabels = allocation.backlog_labels || []; + if (backlogLabels.some((label) => labels.includes(label))) { + return allocation.backlog_milestone || null; + } + + // Default allocation + return allocation.default_milestone || null; +} + +function getProjectForIssue(issue, config) { + const routes = config?.routes || []; + + // Get issue type from the type field or extract from labels + const issueType = issue.type || extractTypeFromLabels(issue.labels); + const labels = issue.labels.map((l) => l.name || l); + + for (const route of routes) { + if (!route.enabled) continue; + + const filter = route.filter || {}; + + // Check type filter + if (filter.type && Array.isArray(filter.type)) { + if (filter.type.includes(issueType)) { + return route.project_url; + } + } + + // Check label filter + if (filter.label && Array.isArray(filter.label)) { + if (filter.label.some((label) => labels.includes(label))) { + return route.project_url; + } + } + } + + // Fall back to default project + return config?.default_project?.url || null; +} + +function extractTypeFromLabels(labels) { + const labelNames = labels.map((l) => l.name || l); + const typeLabel = labelNames.find((l) => l.startsWith("type:")); + if (typeLabel) { + return typeLabel.replace("type:", ""); + } + return null; +} + +function checkMilestoneCapacity(milestoneName, openIssuesCount, config) { + const milestoneStrategy = config?.milestone_strategy || {}; + const capacity = milestoneStrategy.capacity || {}; + const warnThreshold = capacity.warn_threshold || 50; + const errorThreshold = capacity.error_threshold || 100; + + const warnings = []; + + if (openIssuesCount >= errorThreshold) { + warnings.push({ + level: "error", + milestone: milestoneName, + count: openIssuesCount, + message: `Milestone '${milestoneName}' exceeds error threshold (${openIssuesCount} >= ${errorThreshold} issues)`, + }); + } else if (openIssuesCount >= warnThreshold) { + warnings.push({ + level: "warn", + milestone: milestoneName, + count: openIssuesCount, + message: `Milestone '${milestoneName}' approaching capacity (${openIssuesCount} >= ${warnThreshold} issues)`, + }); + } + + return warnings; +} + +function getActiveMilestones(config) { + const milestoneStrategy = config?.milestone_strategy || {}; + return milestoneStrategy.active_milestones || []; +} + +module.exports = { + readConfig, + getMilestoneForIssue, + getProjectForIssue, + extractTypeFromLabels, + checkMilestoneCapacity, + getActiveMilestones, +}; From a99bc6e7c31af772273b74dc39c30f26763a618d Mon Sep 17 00:00:00 2001 From: Ash Shaw Date: Wed, 22 Jul 2026 17:47:44 +0200 Subject: [PATCH 02/16] Potential fix for pull request finding 'Unused variable, import, function or class' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> Signed-off-by: Ash Shaw --- scripts/agents/includes/allocate-milestone.cjs | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/agents/includes/allocate-milestone.cjs b/scripts/agents/includes/allocate-milestone.cjs index 8ea3af567..c474960f6 100644 --- a/scripts/agents/includes/allocate-milestone.cjs +++ b/scripts/agents/includes/allocate-milestone.cjs @@ -7,7 +7,6 @@ const { getOctokit } = require("@actions/github"); const { readConfig, getMilestoneForIssue, - getActiveMilestones, } = require("./milestone-allocation.cjs"); function getItemFromEvent(event) { From 7f4e7639c100a5fc76ac9f31cfc43e3ce7f50434 Mon Sep 17 00:00:00 2001 From: Ash Shaw Date: Wed, 22 Jul 2026 17:59:09 +0200 Subject: [PATCH 03/16] fix: footer cleanup and validation (#1115) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * auto: .remember 14:45 * auto: .remember 16:34 * auto: .remember 16:56 * auto: .remember 17:17 * fix/footer-cleanup-and-validation Remove references below footer lines across entire repository. Footers now comply with design policy: single quirky line only, no markdown links or references below. Changes: - Updated config/footers.config.yaml to remove all reference links from footer templates - Updated DEFAULT_FOOTERS in header-footer.js and footerUtils.js to remove references - Updated FOOTER_PATTERNS regex to match single-line footer format - Created validate-footer-cleanup.js script for detecting and auto-fixing footer issues - Fixed 4400+ files with references-below-footer and duplicate-footer issues - Verified all remaining files are compliant with footer format Footer format now correctly enforced: --- *Maintained by the 🤖 LightSpeedWP Automation Team* Co-Authored-By: Claude Haiku 4.5 * Address CodeRabbit feedback on footer cleanup PR - Update header-footer.test.js to expect new footer format without URLs - Update footerUtils.test.js to expect asterisks instead of underscores - Restore Licence section in CONTRIBUTING.md (content not footer) - Fix validate-footer-cleanup.js to exit with non-zero on unresolved issues - Improve footer cleanup logic to remove all footer duplicates, not just the last one - Add footer cleanup validation to validate:footers script pipeline - Fix ESLint issues in validation script All 5 CodeRabbit findings addressed. --------- Co-authored-by: Claude Haiku 4.5 --- .remember/now.md | 52 +- .remember/today-2026-07-22.md | 16 + AGENTS.md | 1 - CONTRIBUTING.md | 5 +- GOVERNANCE.md | 2 + README.md | 16 - agents/README.md | 4 - agents/ai-readiness-estimator-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../other/memory/client-project-index.md | 2 - ...ncial-planning-2026-05-05-kickoff-notes.md | 2 - ...rthstar-wealth-2026-05-05-kickoff-notes.md | 2 - .../other/memory/pending-confirmations.md | 2 - .../agent/other/memory/routing-history.md | 2 - .../references/agent_files/CONNECTORS.md | 2 - ...ai-readiness-assessment-report-template.md | 2 - .../agent_files/business-context.md | 2 - .../agent_files/commercial-rules/README.md | 2 - .../commercial-rules/addon-rules.md | 2 - .../commercial-rules/approval-rules.md | 2 - .../commercial-rules/custom-scope-triggers.md | 2 - .../commercial-rules/package-thresholds.md | 2 - .../commercial-rules/pricing-rules.md | 2 - .../references/agent_files/docs/README.md | 2 - .../docs/document-ready-markdown-standard.md | 2 - .../docs/output-template-library.md | 2 - .../lightspeedwp-agency-example.md | 2 - .../touroperator-solutions-example.md | 2 - .../agent_files/file-usage-guide.md | 2 - .../gpt-knowledge/00-readme-upload-guide.md | 2 - .../01-custom-gpt-instructions.md | 2 - .../02-workflow-map-and-routing.md | 2 - .../03-output-standards-and-file-naming.md | 2 - .../04-risk-red-flags-and-strict-mode.md | 2 - ...ice-positioning-and-proposal-line-items.md | 2 - .../06-ai-readiness-assessor-reference.md | 2 - .../07-ai-governance-documentor-reference.md | 2 - ...08-content-collection-planner-reference.md | 2 - .../09-ai-chatbot-planner-reference.md | 2 - .../10-router-and-orchestrator-reference.md | 2 - .../gpt-knowledge/11-wizard-prompts.md | 2 - .../gpt-knowledge/12-output-templates.md | 2 - .../gpt-knowledge/13-platform-adapters.md | 2 - .../gpt-knowledge/14-source-frameworks.md | 2 - .../15-project-onboarding-reference.md | 2 - .../16-package-onboarding-wizard-script.md | 2 - .../17-package-defaults-memory-structure.md | 2 - .../estimator-operating-rules.md | 2 - .../gpt-knowledge/proposal-operating-rules.md | 2 - .../intake/approval-gate-checklist.md | 2 - .../intake/blocking-gaps-checklist.md | 2 - .../intake/claim-register-template.md | 2 - .../agent_files/intake/intake-review-table.md | 2 - .../intake/source-approval-register.md | 2 - .../agent_files/memory-schemas/README.md | 2 - .../memory-schemas/active-projects-schema.md | 2 - .../lightspeed-project-defaults-schema.md | 2 - .../project-decisions-schema.md | 2 - .../agent_files/package-addons/addon-index.md | 2 - .../tour-operator-json-ld-audit/addon-spec.md | 2 - .../addon-spec.md | 2 - .../agent_files/package-template-system.md | 2 - .../package-spec.md | 2 - .../package-spec.md | 2 - .../package-spec.md | 2 - .../ai-readiness-foundation/package-spec.md | 2 - .../package-spec.md | 2 - .../agent_files/packages/assessment-values.md | 2 - .../package-spec.md | 2 - .../agent_files/packages/package-index.md | 2 - .../yoast-ai-content-training/package-spec.md | 2 - .../agent_files/references/README.md | 2 - .../chatbot-client-questionnaire-module.md | 2 - .../chatbot-conversation-qa-checklist.md | 2 - ...escalation-and-fallback-design-template.md | 2 - .../chatbot/chatbot-use-case-worksheet.md | 2 - .../ai-governance-guardrails-worksheet.md | 2 - .../governance/governance-decision-log.md | 2 - .../governance/policy-draft-outline.md | 2 - .../governance/post-workshop-action-plan.md | 2 - .../pre-workshop-stakeholder-questionnaire.md | 2 - .../implementation-intake-form.md | 2 - .../readiness/ai-readiness-scoring-sheet.md | 2 - .../content-workflow-audit-checklist.md | 2 - .../findings-and-recommendations-template.md | 2 - .../governance-maturity-checklist.md | 2 - .../readiness-assessment-questionnaire.md | 2 - .../technical-readiness-checklist.md | 2 - .../shared/change-request-log.md | 2 - .../shared/client-questionnaire.md | 2 - .../shared/handover-checklist.md | 2 - .../shared/qa-approval-form.md | 2 - .../agent_files/service-templates/README.md | 2 - ...bot-boundaries-and-escalation-worksheet.md | 2 - .../chatbot-discovery-questionnaire.md | 2 - .../chatbot-launch-readiness-checklist.md | 2 - .../chatbot-recommendation-memo-template.md | 2 - .../chatbot-source-suitability-checklist.md | 2 - .../readiness/ai-readiness-audit-checklist.md | 2 - .../readiness/readiness-roadmap-template.md | 2 - .../shared/claim-register.md | 2 - .../shared/commercial-assumptions-sheet.md | 2 - .../service-templates/shared/decision-log.md | 2 - .../shared/risk-and-review-log.md | 2 - .../shared/source-of-truth-register.md | 2 - .../skill-directory/skill-routing-guide.md | 2 - .../architecture-review-checklist.md | 2 - .../data-and-source-mapping-sheet.md | 2 - .../detailed-solution-discovery-document.md | 2 - .../implementation-checklist.md | 2 - .../integration-requirements-template.md | 2 - .../release-and-rollback-checklist.md | 2 - .../security-and-privacy-review-checklist.md | 2 - .../source-content-approval-checklist.md | 2 - .../support-model-operating-model-handover.md | 2 - .../tailored-implementation-plan.md | 2 - .../implementation/test-plan-and-qa-matrix.md | 2 - .../implementation/uat-sign-off-form.md | 2 - .../ai-readiness-estimate-template.md | 2 - .../client-evidence-request-template.md | 2 - ...nt-ready-ai-readiness-estimate-template.md | 2 - .../readiness/commercial-assumptions-sheet.md | 2 - .../internal-ai-readiness-cover-note.md | 2 - .../internal-estimate-review-checklist.md | 2 - .../missing-values-intake-checklist.md | 2 - .../package-routing-decision-tree.md | 2 - .../readiness/project-evidence-review-log.md | 2 - .../shared/markdown-output-format-spec.md | 2 - .../templates/uat/high-severity-fixes-log.md | 2 - ...-readiness-estimator-team-testing-guide.md | 2 - .../templates/uat/pilot-assignment-sheet.md | 2 - .../uat/pilot-test-summary-template.md | 2 - .../templates/uat/retest-checklist.md | 2 - .../templates/uat/tester-brief-template.md | 2 - .../references/agent_files/tests/README.md | 2 - .../agent_files/tests/example-01.md | 2 - .../agent_files/tests/example-02.md | 2 - .../agent_files/tests/example-03.md | 2 - .../agent_files/tests/example-04.md | 2 - .../agent_files/tests/example-05.md | 2 - .../references/agent_files/tests/test-plan.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../manifests/validation.md | 2 - .../ai-chatbot-planner/SKILL.md | 2 - .../ai-engine-implementation-notes.md | 2 - .../references/chatbot-brief-template.md | 2 - .../references/launch-gates.md | 2 - .../references/privacy-log-retention.md | 2 - .../references/test-scripts.md | 2 - .../ai-governance-documentor/SKILL.md | 2 - .../references/governance-guide-template.md | 2 - .../references/high-risk-interactive-mode.md | 2 - .../references/minimum-client-inputs.md | 2 - .../references/prompt-templates.md | 2 - .../references/role-map.md | 2 - .../ai-readiness-assessor/SKILL.md | 2 - .../references/red-flags.md | 2 - .../references/report-template.md | 2 - .../references/scoring-model.md | 2 - .../references/tool-checks.md | 2 - .../content-collection-planner/SKILL.md | 2 - .../references/client-email-template.md | 2 - .../references/content-gap-report-template.md | 2 - .../references/folder-structure.md | 2 - .../generic-website-content-checklist.md | 2 - .../references/sector-addons.md | 2 - .../SKILL.md | 2 - .../references/client-project-wizard.md | 2 - .../lightspeed-service-positioning.md | 2 - .../references/output-standards.md | 2 - .../references/red-flags.md | 2 - .../references/skill-routing-rules.md | 2 - .../SKILL.md | 2 - .../assets/approved-wording-template.md | 2 - .../assets/claim-register-template.md | 2 - .../assets/evidence-needed-template.md | 2 - .../assets/page-location-map-template.md | 2 - .../assets/publication-summary-template.md | 2 - .../assets/rejected-wording-template.md | 2 - .../assets/review-owner-template.md | 2 - .../references/approved-wording-rules.md | 2 - .../references/chatbot-claim-rules.md | 2 - .../references/claim-audit-workflow.md | 2 - .../references/claim-types.md | 2 - .../references/classification-rules.md | 2 - .../references/evidence-standards.md | 2 - .../references/report-template.md | 2 - .../SKILL.md | 2 - .../chatbot-safe-faq-register-template.md | 2 - .../assets/company-faq-page-template.md | 2 - .../assets/duplicate-faq-report-template.md | 2 - .../assets/escalation-questions-template.md | 2 - .../assets/page-level-faq-map-template.md | 2 - .../schema-ready-faq-answers-template.md | 2 - .../assets/unsupported-questions-template.md | 2 - .../references/chatbot-safe-source-rules.md | 2 - .../escalation-and-unsupported-rules.md | 2 - .../references/faq-curation-workflow.md | 2 - .../references/faq-taxonomy.md | 2 - .../references/report-templates.md | 2 - .../references/schema-ready-faq-rules.md | 2 - .../SKILL.md | 2 - .../assets/accessibility-state-template.md | 2 - .../assets/component-block-map-template.md | 2 - .../assets/issue-register-template.md | 2 - .../assets/light-dark-mode-qa-template.md | 2 - .../assets/parity-audit-report-template.md | 2 - .../assets/pattern-section-map-template.md | 2 - .../assets/responsive-qa-template.md | 2 - .../assets/token-parity-table-template.md | 2 - .../references/accessibility-state-qa.md | 2 - .../references/component-block-mapping.md | 2 - .../references/issue-severity-model.md | 2 - .../references/light-dark-mode-qa.md | 2 - .../references/parity-audit-workflow.md | 2 - .../references/pattern-section-mapping.md | 2 - .../references/responsive-state-qa.md | 2 - .../references/theme-json-token-mapping.md | 2 - .../SKILL.md | 2 - .../assets/chatbot-handoff-events-template.md | 2 - .../consultation-cta-tracking-template.md | 2 - .../assets/form-tracking-plan-template.md | 2 - .../assets/ga4-event-plan-template.md | 2 - .../assets/gtm-trigger-notes-template.md | 2 - .../assets/launch-baseline-report-template.md | 2 - .../assets/lead-magnet-tracking-template.md | 2 - .../looker-studio-dashboard-brief-template.md | 2 - .../measurement-qa-checklist-template.md | 2 - .../references/chatbot-handoff-events.md | 2 - .../references/event-naming-and-parameters.md | 2 - .../references/form-and-lead-tracking.md | 2 - .../references/gtm-trigger-notes.md | 2 - .../references/launch-baseline-report.md | 2 - .../references/looker-studio-dashboard.md | 2 - .../references/measurement-workflow.md | 2 - .../references/privacy-and-consent-notes.md | 2 - .../lightspeed-launch-qa-planner/SKILL.md | 2 - .../assets/block-plugin-qa-matrix-template.md | 2 - .../assets/go-no-go-summary-template.md | 2 - .../assets/launch-gate-checklist-template.md | 2 - .../assets/launch-qa-plan-template.md | 2 - .../page-template-qa-matrix-template.md | 2 - .../assets/pattern-qa-matrix-template.md | 2 - .../assets/qa-workstream-table-template.md | 2 - .../references/accessibility-responsive-qa.md | 2 - .../references/block-plugin-qa.md | 2 - .../references/block-theme-qa.md | 2 - .../references/conversion-and-tracking-qa.md | 2 - .../references/figma-to-wordpress-qa.md | 2 - .../references/launch-gate-model.md | 2 - .../references/launch-qa-planning-workflow.md | 2 - .../references/pattern-and-template-qa.md | 2 - .../references/specialist-skill-routing.md | 2 - .../SKILL.md | 2 - .../assets/accessibility-testing-template.md | 2 - .../assets/analytics-tagging-template.md | 2 - .../assets/broken-link-checklist-template.md | 2 - .../assets/form-testing-template.md | 2 - .../assets/go-no-go-template.md | 2 - .../assets/launch-checklist-template.md | 2 - .../assets/mobile-responsive-qa-template.md | 2 - .../assets/page-qa-table-template.md | 2 - .../assets/performance-notes-template.md | 2 - .../references/go-no-go-rules.md | 2 - .../references/issue-severity-model.md | 2 - .../references/launch-readiness-workflow.md | 2 - .../references/qa-checklists.md | 2 - .../references/report-templates.md | 2 - .../references/wordpress-launch-notes.md | 2 - .../lightspeed-policy-page-generator/SKILL.md | 2 - .../accessibility-statement-template.md | 2 - .../assets/ai-governance-page-template.md | 2 - .../assets/chatbot-disclosure-template.md | 2 - .../assets/cookie-policy-brief-template.md | 2 - .../data-log-retention-decision-template.md | 2 - .../assets/privacy-policy-brief-template.md | 2 - .../references/accessibility-statement.md | 2 - .../references/ai-governance-page.md | 2 - .../references/chatbot-disclosure.md | 2 - .../references/cookie-policy-brief.md | 2 - .../references/data-log-retention.md | 2 - .../references/policy-workflow.md | 2 - .../references/privacy-policy-brief.md | 2 - .../references/review-and-approval.md | 2 - .../lightspeed-project-onboarding/SKILL.md | 2 - .../lightspeed-redirect-map-planner/SKILL.md | 2 - .../assets/404-risk-list-template.md | 2 - .../assets/current-url-inventory-template.md | 2 - .../assets/launch-day-checklist-template.md | 2 - .../assets/new-url-map-template.md | 2 - .../assets/redirect-status-table-template.md | 2 - .../assets/seo-migration-summary-template.md | 2 - .../references/redirect-planning-workflow.md | 2 - .../references/redirect-status-model.md | 2 - .../references/report-template.md | 2 - .../references/seo-migration-notes.md | 2 - .../references/wordpress-redirect-notes.md | 2 - .../SKILL.md | 2 - .../assets/ai-visibility-baseline-template.md | 2 - .../assets/claim-safe-wording-template.md | 2 - .../assets/faq-schema-map-template.md | 2 - .../assets/internal-linking-plan-template.md | 2 - .../page-schema-recommendation-template.md | 2 - .../schema-launch-checklist-template.md | 2 - .../references/ai-visibility-baseline.md | 2 - .../references/answer-engine-optimisation.md | 2 - .../references/claim-safe-wording.md | 2 - .../references/faq-schema-map.md | 2 - .../references/internal-linking-rules.md | 2 - .../references/schema-types.md | 2 - .../references/schema-workflow.md | 2 - .../references/validation-and-monitoring.md | 2 - .../SKILL.md | 2 - .../assets/case-study-template.md | 2 - .../assets/content-pack-readme-template.md | 2 - .../assets/faq-page-template.md | 2 - .../assets/page-brief-template.md | 2 - .../assets/service-page-template.md | 2 - .../assets/solution-page-template.md | 2 - .../references/chatbot-safe-content-rules.md | 2 - .../references/claim-handling-rules.md | 2 - .../references/content-generation-workflow.md | 2 - .../references/lightspeed-style-guide.md | 2 - .../references/page-output-templates.md | 2 - .../references/review-status-labels.md | 2 - .../references/seo-and-schema-rules.md | 2 - .../references/source-inputs.md | 2 - .../markdown-content-validator/README.md | 2 - .../markdown-content-validator/SKILL.md | 2 - .../references/example-validation-report.md | 2 - .../references/markdown-validation-rules.md | 2 - .../references/schema-customisation.md | 2 - .../references/semver-versioning-rules.md | 2 - .../tests/invalid-version.md | 2 - .../tests/markdown-issues.md | 2 - .../tests/missing-frontmatter.md | 2 - .../tests/valid-example.md | 2 - .../tests/validation-report.md | 2 - .../post-launch-optimisation/SKILL.md | 2 - .../technical-seo-audit/SKILL.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 65 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- .../README.md | 2 - .../memory/discovery/defaults.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/references/CONNECTORS.md | 2 - .../agent/references/README.md | 2 - .../agent/references/business-context.md | 2 - .../agent/references/docs/README.md | 2 - .../docs/output-template-library.md | 2 - .../docs/preview-validation-checklist.md | 2 - .../example-contexts-index.md | 2 - .../file-inventory-summary.md | 2 - .../lightspeedwp-agency-example.md | 2 - .../lsx-design-system-example.md | 2 - .../master-preview-qa-checklist.md | 2 - .../repeatable-preview-test-prompts.md | 2 - .../run-comparison-guide.md | 2 - .../touroperator-solutions-example.md | 2 - .../references/intake/intake-review-table.md | 2 - .../intake/memory-promotion-checklist.md | 2 - .../intake/questionnaire-source-map.md | 2 - .../intake/source-approval-register.md | 2 - .../references/questionnaires/MANIFEST.md | 2 - .../agent/references/questionnaires/README.md | 2 - .../basic-website-package-questionnaire.md | 2 - ...t-collection-fillable-pdf-questionnaire.md | 2 - .../content-collection-questionnaire.md | 2 - .../design-briefing-questionnaire.md | 2 - .../questionnaires/ecommerce-briefing-form.md | 2 - .../standard-website-package-questionnaire.md | 2 - .../tone-of-voice-questionnaire.md | 2 - .../tour-operator-blog-questionnaire.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../templates/client-discovery-summary.md | 4 +- .../agent/templates/discovery-followups.md | 4 +- .../templates/discovery-session-brief.md | 4 +- .../agent/templates/field-definitions.md | 2 - .../templates/internal-discovery-pack.md | 4 +- .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../manifests/validation.md | 2 - .../accessibility-discovery-reviewer/SKILL.md | 2 - .../hermes/ai-chatbot-planner/SKILL.md | 2 - .../ai-engine-implementation-notes.md | 2 - .../references/chatbot-brief-template.md | 2 - .../references/launch-gates.md | 2 - .../references/privacy-log-retention.md | 2 - .../references/test-scripts.md | 2 - .../hermes/ai-governance-documentor/SKILL.md | 2 - .../references/governance-guide-template.md | 2 - .../references/high-risk-interactive-mode.md | 2 - .../references/minimum-client-inputs.md | 2 - .../references/prompt-templates.md | 2 - .../references/role-map.md | 2 - .../hermes/ai-readiness-assessor/SKILL.md | 2 - .../references/red-flags.md | 2 - .../references/report-template.md | 2 - .../references/scoring-model.md | 2 - .../references/tool-checks.md | 2 - .../hermes/content-audit-strategist/SKILL.md | 2 - .../content-collection-planner/SKILL.md | 2 - .../references/client-email-template.md | 2 - .../references/content-gap-report-template.md | 2 - .../references/folder-structure.md | 2 - .../generic-website-content-checklist.md | 2 - .../references/sector-addons.md | 2 - .../hermes/design-md-generator/SKILL.md | 2 - .../design-md-cli-and-portability.md | 2 - .../references/design-md-workflow.md | 2 - .../references/figma-to-design-md-mapping.md | 2 - .../references/output-templates.md | 2 - .../references/qa-rubric.md | 2 - .../references/wordpress-ci-integration.md | 2 - .../wordpress-theme-json-mapping.md | 2 - .../hermes/discovery-onboarding/SKILL.md | 2 - .../references/related-skill-routing.md | 2 - .../hermes/discovery-pack-review/SKILL.md | 2 - .../hermes/discovery-source-intake/SKILL.md | 2 - .../references/intake-schema.md | 2 - .../hermes/email-list-reviewer/SKILL.md | 2 - .../SKILL.md | 2 - .../assets/approved-wording-template.md | 2 - .../assets/claim-register-template.md | 2 - .../assets/evidence-needed-template.md | 2 - .../assets/page-location-map-template.md | 2 - .../assets/publication-summary-template.md | 2 - .../assets/rejected-wording-template.md | 2 - .../assets/review-owner-template.md | 2 - .../references/approved-wording-rules.md | 2 - .../references/chatbot-claim-rules.md | 2 - .../references/claim-audit-workflow.md | 2 - .../references/claim-types.md | 2 - .../references/classification-rules.md | 2 - .../references/evidence-standards.md | 2 - .../references/report-template.md | 2 - .../SKILL.md | 2 - .../chatbot-safe-faq-register-template.md | 2 - .../assets/company-faq-page-template.md | 2 - .../assets/duplicate-faq-report-template.md | 2 - .../assets/escalation-questions-template.md | 2 - .../assets/page-level-faq-map-template.md | 2 - .../schema-ready-faq-answers-template.md | 2 - .../assets/unsupported-questions-template.md | 2 - .../references/chatbot-safe-source-rules.md | 2 - .../escalation-and-unsupported-rules.md | 2 - .../references/faq-curation-workflow.md | 2 - .../references/faq-taxonomy.md | 2 - .../references/report-templates.md | 2 - .../references/schema-ready-faq-rules.md | 2 - .../SKILL.md | 2 - .../assets/chatbot-handoff-events-template.md | 2 - .../consultation-cta-tracking-template.md | 2 - .../assets/form-tracking-plan-template.md | 2 - .../assets/ga4-event-plan-template.md | 2 - .../assets/gtm-trigger-notes-template.md | 2 - .../assets/launch-baseline-report-template.md | 2 - .../assets/lead-magnet-tracking-template.md | 2 - .../looker-studio-dashboard-brief-template.md | 2 - .../measurement-qa-checklist-template.md | 2 - .../references/chatbot-handoff-events.md | 2 - .../references/event-naming-and-parameters.md | 2 - .../references/form-and-lead-tracking.md | 2 - .../references/gtm-trigger-notes.md | 2 - .../references/launch-baseline-report.md | 2 - .../references/looker-studio-dashboard.md | 2 - .../references/measurement-workflow.md | 2 - .../references/privacy-and-consent-notes.md | 2 - .../lightspeed-launch-qa-planner/SKILL.md | 2 - .../assets/block-plugin-qa-matrix-template.md | 2 - .../assets/go-no-go-summary-template.md | 2 - .../assets/launch-gate-checklist-template.md | 2 - .../assets/launch-qa-plan-template.md | 2 - .../page-template-qa-matrix-template.md | 2 - .../assets/pattern-qa-matrix-template.md | 2 - .../assets/qa-workstream-table-template.md | 2 - .../references/accessibility-responsive-qa.md | 2 - .../references/block-plugin-qa.md | 2 - .../references/block-theme-qa.md | 2 - .../references/conversion-and-tracking-qa.md | 2 - .../references/figma-to-wordpress-qa.md | 2 - .../references/launch-gate-model.md | 2 - .../references/launch-qa-planning-workflow.md | 2 - .../references/pattern-and-template-qa.md | 2 - .../references/specialist-skill-routing.md | 2 - .../lightspeed-qa-findings-router/SKILL.md | 2 - .../assets/client-summary-template.md | 2 - .../assets/github-issue-draft-template.md | 2 - .../assets/launch-blocker-list-template.md | 2 - .../assets/qa-findings-register-template.md | 2 - .../assets/retest-checklist-template.md | 2 - .../assets/workstream-routing-template.md | 2 - .../references/github-issue-drafting.md | 2 - .../references/qa-findings-workflow.md | 2 - .../references/report-template.md | 2 - .../references/retest-rules.md | 2 - .../references/severity-and-launch-status.md | 2 - .../references/workstream-routing.md | 2 - .../SKILL.md | 2 - .../assets/ai-visibility-baseline-template.md | 2 - .../assets/claim-safe-wording-template.md | 2 - .../assets/faq-schema-map-template.md | 2 - .../assets/internal-linking-plan-template.md | 2 - .../page-schema-recommendation-template.md | 2 - .../schema-launch-checklist-template.md | 2 - .../references/ai-visibility-baseline.md | 2 - .../references/answer-engine-optimisation.md | 2 - .../references/claim-safe-wording.md | 2 - .../references/faq-schema-map.md | 2 - .../references/internal-linking-rules.md | 2 - .../references/schema-types.md | 2 - .../references/schema-workflow.md | 2 - .../references/validation-and-monitoring.md | 2 - .../SKILL.md | 2 - .../assets/acceptance-test-map-template.md | 2 - .../assets/dependency-map-template.md | 2 - .../assets/epic-map-template.md | 2 - .../assets/github-issue-template.md | 2 - .../assets/implementation-waves-template.md | 2 - .../assets/task-plan-template.md | 2 - .../references/acceptance-criteria.md | 2 - .../dependency-and-wave-planning.md | 2 - .../references/estimation-models.md | 2 - .../references/issue-draft-rules.md | 2 - .../references/qa-mapping.md | 2 - .../references/task-breakdown-workflow.md | 2 - .../references/wordpress-task-rules.md | 2 - .../references/workstream-model.md | 2 - .../agent-attached/hermes/linear/SKILL.md | 2 - .../hermes/website-hosting-reviewer/SKILL.md | 2 - .../website-performance-assessor/SKILL.md | 2 - .../SKILL.md | 2 - .../SKILL.md | 2 - .../references/output-templates.md | 2 - .../references/qa-rubric.md | 2 - .../references/workflow.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- agents/design-partner-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/references/CONNECTORS.md | 2 - .../agent/references/README.md | 2 - .../accessibility-review-guidelines.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/brief-document-standard.md | 2 - .../agent/references/brief-template.md | 2 - .../agent/references/business-context.md | 2 - .../agent/references/capability-routing.md | 2 - .../references/claim-review-conventions.md | 2 - .../agent/references/cleanup-checklist.md | 2 - .../client-pattern-activation-guide.md | 2 - .../references/client-review-workflow.md | 2 - .../agent/references/critique-heuristics.md | 2 - .../references/design-audit-framework.md | 2 - .../agent/references/examples/README.md | 2 - .../examples/design-brief-example.md | 2 - .../examples/design-critique-example.md | 2 - .../examples/execution-packet-example.md | 2 - .../implementation-handoff-example.md | 2 - .../publishing-homepage-audit-example.md | 2 - .../reference-site-analysis-example.md | 2 - .../examples/research-synthesis-example.md | 2 - .../examples/tour-booking-audit-example.md | 2 - .../references/examples/ux-writing-example.md | 2 - .../woo-product-page-critique-example.md | 2 - .../agent/references/experiments-framework.md | 2 - .../references/file-and-naming-conventions.md | 2 - .../agent/references/handoff-template.md | 2 - .../agent/references/launch-qa-conventions.md | 2 - .../references/memory-snapshots/README.md | 2 - .../client-engagement-template.md | 2 - .../memory-snapshots/project-defaults.md | 2 - .../memory-snapshots/review-history.md | 2 - .../references/memory-snapshots/todos.md | 2 - .../memory-snapshots/user-preferences.md | 2 - .../agent/references/memory-usage-guide.md | 2 - .../agent/references/output-conventions.md | 2 - .../references/parity-audit-conventions.md | 2 - .../agent/references/prompts/README.md | 2 - .../connector-guide-consistency-pass.md | 2 - .../prompts/example-family-drift-pass.md | 2 - .../prompts/file-family-gap-audit-pass.md | 2 - .../instruction-reference-audit-pass.md | 2 - .../prompts/memory-lane-consistency-pass.md | 2 - .../prompt-library-consistency-pass.md | 2 - .../prompts/recommended-cleanup-pass.md | 2 - .../prompts/review-history-lane-pass.md | 2 - .../references/prompts/routing-audit-pass.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - ...skills-routing-and-directory-validation.md | 2 - .../prompts/starter-prompt-alignment-pass.md | 2 - .../prompts/template-schema-alignment-pass.md | 2 - ...update-all-readmes-to-current-structure.md | 2 - .../prompts/validation-pack-tightening.md | 2 - .../references/research-synthesis-template.md | 2 - .../agent/references/schema-index.md | 2 - .../agent/references/schemas/README.md | 2 - .../references/source-of-truth-policy.md | 2 - .../agent/references/tests/README.md | 2 - .../accessibility-review-quality-check.md | 2 - .../tests/brand-voice-quality-check.md | 2 - .../design-review-regression-checklist.md | 2 - .../tests/examples-schema-validation-test.md | 2 - .../tests/memory-regression-check.md | 2 - .../tests/memory-schema-validation-test.md | 2 - .../references/tests/preview-test-prompts.md | 2 - .../reference-site-analysis-quality-check.md | 2 - .../references/tests/review-checklist.md | 2 - .../tests/schema-validation-tests.md | 2 - .../tests/schemas-schema-validation-test.md | 2 - .../tests/templates-schema-validation-test.md | 2 - .../tests/validation-coverage-matrix.md | 2 - .../agent/references/ux-writing-guidelines.md | 2 - .../agent/references/validation-standards.md | 2 - .../validator-contract-cleanup-checklist.md | 2 - .../agent/references/validator-usage-guide.md | 2 - .../wordpress-handoff-conventions.md | 2 - .../references/workflow-routing-guide.md | 2 - .../agent/scripts/README.md | 2 - .../agent/scripts/normalize-review-entry.md | 2 - .../agent/scripts/review-workflow-notes.md | 2 - .../scripts/triage-memory-destination.md | 2 - .../agent/templates/README.md | 2 - .../agent/templates/design-audit-template.md | 2 - .../agent/templates/design-brief-template.md | 2 - .../templates/design-critique-template.md | 2 - .../implementation-handoff-template.md | 2 - .../reference-site-analysis-template.md | 2 - .../templates/research-synthesis-template.md | 2 - .../review-history-entry-template.md | 2 - .../agent/templates/ux-writing-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../design-partner-agent/manifests/skills.md | 2 - .../agent-attached/hermes/audit/SKILL.md | 2 - .../agent-attached/hermes/brief/SKILL.md | 2 - .../hermes/content-file-validator/README.md | 2 - .../hermes/content-file-validator/SKILL.md | 2 - .../content-validation-report.md | 2 - .../references/example-validation-report.md | 2 - .../references/handoff-validation-rules.md | 2 - .../references/markdown-validation-rules.md | 2 - .../references/schema-customisation.md | 2 - .../references/semver-versioning-rules.md | 2 - .../tests/invalid-version.md | 2 - .../tests/markdown-issues.md | 2 - .../tests/missing-frontmatter.md | 2 - .../tests/valid-example.md | 2 - .../agent-attached/hermes/critique/SKILL.md | 2 - .../hermes/design-md-generator/SKILL.md | 2 - .../design-md-cli-and-portability.md | 2 - .../references/design-md-workflow.md | 2 - .../references/figma-to-design-md-mapping.md | 2 - .../references/output-templates.md | 2 - .../references/qa-rubric.md | 2 - .../references/wordpress-ci-integration.md | 2 - .../wordpress-theme-json-mapping.md | 2 - .../hermes/design-qa-readiness/SKILL.md | 2 - .../hermes/experiments/SKILL.md | 2 - .../agent-attached/hermes/handoff/SKILL.md | 2 - .../SKILL.md | 2 - .../assets/approved-wording-template.md | 2 - .../assets/claim-register-template.md | 2 - .../assets/evidence-needed-template.md | 2 - .../assets/page-location-map-template.md | 2 - .../assets/publication-summary-template.md | 2 - .../assets/rejected-wording-template.md | 2 - .../assets/review-owner-template.md | 2 - .../references/approved-wording-rules.md | 2 - .../references/chatbot-claim-rules.md | 2 - .../references/claim-audit-workflow.md | 2 - .../references/claim-types.md | 2 - .../references/classification-rules.md | 2 - .../references/evidence-standards.md | 2 - .../references/report-template.md | 2 - .../SKILL.md | 2 - .../assets/accessibility-state-template.md | 2 - .../assets/component-block-map-template.md | 2 - .../assets/issue-register-template.md | 2 - .../assets/light-dark-mode-qa-template.md | 2 - .../assets/parity-audit-report-template.md | 2 - .../assets/pattern-section-map-template.md | 2 - .../assets/responsive-qa-template.md | 2 - .../assets/token-parity-table-template.md | 2 - .../references/accessibility-state-qa.md | 2 - .../references/component-block-mapping.md | 2 - .../references/issue-severity-model.md | 2 - .../references/light-dark-mode-qa.md | 2 - .../references/parity-audit-workflow.md | 2 - .../references/pattern-section-mapping.md | 2 - .../references/responsive-state-qa.md | 2 - .../references/theme-json-token-mapping.md | 2 - .../SKILL.md | 2 - .../block-plugin-requirements-template.md | 2 - .../assets/component-block-map-template.md | 2 - .../assets/github-issue-seeds-template.md | 2 - .../assets/open-questions-template.md | 2 - .../assets/technical-brief-template.md | 2 - .../assets/template-pattern-map-template.md | 2 - .../assets/token-map-template.md | 2 - .../references/block-plugin-requirements.md | 2 - .../references/block-theme-requirements.md | 2 - .../references/component-to-block-mapping.md | 2 - .../references/editor-experience.md | 2 - .../references/figma-evidence-intake.md | 2 - .../references/pattern-template-mapping.md | 2 - .../references/qa-handoff.md | 2 - .../references/technical-brief-workflow.md | 2 - .../references/theme-json-token-mapping.md | 2 - .../SKILL.md | 2 - .../assets/client-handoff-template.md | 2 - .../assets/internal-handoff-template.md | 2 - .../assets/known-issues-register-template.md | 2 - .../assets/post-launch-monitoring-template.md | 2 - .../assets/release-notes-template.md | 2 - .../assets/support-transition-template.md | 2 - .../references/client-handoff-rules.md | 2 - .../references/known-issues-rules.md | 2 - .../references/post-launch-monitoring.md | 2 - .../references/release-handoff-workflow.md | 2 - .../references/release-notes-rules.md | 2 - .../references/support-transition-rules.md | 2 - .../hermes/reference-site-analysis/SKILL.md | 2 - .../references/output-template.md | 2 - .../hermes/research-synthesis/SKILL.md | 2 - .../agent-attached/hermes/ux-writing/SKILL.md | 2 - .../wordpress-block-theme-handoff/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- agents/harvest-analytical-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/instructions/prompts/README.md | 2 - .../prompts/readme-refresh-prompt.md | 2 - .../prompts/routing-audit-prompt.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../other/attached-memory-starters/todos.md | 2 - .../user-preferences.md | 2 - .../agent/other/business-context.md | 2 - .../other/examples/budget-health.example.md | 2 - .../examples/invoice-opportunity.example.md | 2 - .../permission-limited-response.example.md | 2 - .../other/examples/project-hygiene.example.md | 2 - .../other/examples/retainer-health.example.md | 2 - .../other/examples/starter-prompts.example.md | 2 - .../other/examples/unbilled-time.example.md | 2 - .../examples/weekly-ops-summary.example.md | 2 - .../write-action-confirmation.example.md | 2 - .../other/tests/budget-health-report.test.md | 2 - .../tests/file-reference-validation.test.md | 2 - .../other/tests/invoice-opportunity.test.md | 2 - .../markdown-structure-validation.test.md | 2 - .../agent/other/tests/memory-hygiene.test.md | 2 - .../other/tests/permission-handling.test.md | 2 - .../agent/other/tests/project-hygiene.test.md | 2 - .../tests/real-workflow-scenarios.test.md | 2 - .../agent/other/tests/retainer-health.test.md | 2 - .../tests/source-priority-consistency.test.md | 2 - .../tests/starter-prompt-quality.test.md | 2 - .../tests/template-schema-alignment.test.md | 2 - .../other/tests/unbilled-time-report.test.md | 2 - .../tests/write-action-confirmation.test.md | 2 - .../agent/references/CONNECTORS.md | 2 - .../references/agency-reporting-rules.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/harvest-mcp-capabilities.md | 2 - .../harvest-permissions-reference.md | 2 - .../agent/references/memory-policy.md | 2 - .../reporting-metric-definitions.md | 2 - .../agent/references/source-priority.md | 2 - .../agent/references/validation-rules.md | 2 - .../references/write-action-approval-rules.md | 2 - .../agent/scripts/README.md | 2 - .../agent/scripts/mcp-gap-log.md | 2 - .../agent/scripts/report-generation-flow.md | 2 - .../agent/scripts/tool-inventory.md | 2 - .../budget-health-report.template.md | 2 - .../invoice-opportunity-report.template.md | 2 - .../project-hygiene-report.template.md | 2 - .../retainer-health-report.template.md | 2 - .../unbilled-time-report.template.md | 2 - .../templates/validation-report.template.md | 2 - .../templates/weekly-ops-summary.template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/exported-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../manifests/validation.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/linear-advisor-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../references/agent_files/CONNECTORS.md | 2 - .../agent_files/ISSUE_TEMPLATE/01-task.md | 2 - .../agent_files/ISSUE_TEMPLATE/02-bug.md | 2 - .../agent_files/ISSUE_TEMPLATE/03-feature.md | 2 - .../agent_files/ISSUE_TEMPLATE/04-design.md | 2 - .../agent_files/ISSUE_TEMPLATE/05-epic.md | 2 - .../agent_files/ISSUE_TEMPLATE/06-story.md | 2 - .../ISSUE_TEMPLATE/07-improvement.md | 2 - .../07-user-experience-feedback.md | 2 - .../ISSUE_TEMPLATE/08-code-refactor.md | 2 - .../agent_files/ISSUE_TEMPLATE/09-build-ci.md | 2 - .../ISSUE_TEMPLATE/10-automation.md | 2 - .../ISSUE_TEMPLATE/11-testing-coverage.md | 2 - .../ISSUE_TEMPLATE/12-performance.md | 2 - .../agent_files/ISSUE_TEMPLATE/13-a11y.md | 2 - .../agent_files/ISSUE_TEMPLATE/14-security.md | 2 - .../ISSUE_TEMPLATE/15-compatibility.md | 2 - .../ISSUE_TEMPLATE/16-integration-issue.md | 2 - .../agent_files/ISSUE_TEMPLATE/17-release.md | 2 - .../ISSUE_TEMPLATE/18-maintenance.md | 2 - .../ISSUE_TEMPLATE/19-documentation.md | 2 - .../agent_files/ISSUE_TEMPLATE/20-research.md | 2 - .../agent_files/ISSUE_TEMPLATE/21-audit.md | 2 - .../ISSUE_TEMPLATE/22-code-review.md | 2 - .../agent_files/ISSUE_TEMPLATE/23-ai-ops.md | 2 - .../ISSUE_TEMPLATE/24-content-modelling.md | 2 - .../agent_files/ISSUE_TEMPLATE/25-help.md | 2 - .../agent_files/ISSUE_TEMPLATE/README.md | 4 +- .../PULL_REQUEST_TEMPLATE/README.md | 4 +- .../PULL_REQUEST_TEMPLATE/pr_bug.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_chore.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_ci.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_dep_update.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_docs.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_feature.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_hotfix.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_refactor.md | 2 - .../PULL_REQUEST_TEMPLATE/pr_release.md | 2 - .../agent_files/SAVED_REPLIES/README.md | 4 +- .../community/code-of-conduct.md | 2 - .../SAVED_REPLIES/community/guidelines.md | 2 - .../SAVED_REPLIES/community/legal.md | 2 - .../SAVED_REPLIES/community/welcome.md | 2 - .../SAVED_REPLIES/issues/a11y-acknowledge.md | 2 - .../SAVED_REPLIES/issues/area-routing.md | 2 - .../SAVED_REPLIES/issues/blockers.md | 2 - .../SAVED_REPLIES/issues/bug-reports.md | 2 - .../SAVED_REPLIES/issues/documentation.md | 2 - .../SAVED_REPLIES/issues/duplicate.md | 2 - .../SAVED_REPLIES/issues/duplicates.md | 2 - .../SAVED_REPLIES/issues/epic-tracking.md | 2 - .../SAVED_REPLIES/issues/feature-requests.md | 2 - .../SAVED_REPLIES/issues/good-first-issue.md | 2 - .../SAVED_REPLIES/issues/inactive-issue.md | 2 - .../issues/label-clarification.md | 2 - .../SAVED_REPLIES/issues/meta-label-nudge.md | 2 - .../SAVED_REPLIES/issues/missing-info.md | 2 - .../SAVED_REPLIES/issues/more-info.md | 2 - .../issues/needs-reproduction.md | 2 - .../issues/research-completion.md | 2 - .../issues/security-acknowledge.md | 2 - .../SAVED_REPLIES/issues/stale-abandoned.md | 2 - .../SAVED_REPLIES/issues/support.md | 2 - .../SAVED_REPLIES/issues/triage.md | 2 - .../SAVED_REPLIES/issues/wontfix.md | 2 - .../technical/api-integration.md | 2 - .../SAVED_REPLIES/technical/code-style.md | 2 - .../SAVED_REPLIES/technical/configuration.md | 2 - .../SAVED_REPLIES/technical/dependencies.md | 2 - .../technical/dependency-update.md | 2 - .../technical/environment-config.md | 2 - .../SAVED_REPLIES/technical/environment.md | 2 - .../SAVED_REPLIES/technical/missing-tests.md | 2 - .../SAVED_REPLIES/technical/performance.md | 2 - .../SAVED_REPLIES/technical/security.md | 2 - .../agent_files/business-context.md | 2 - .../canonical/ISSUE_CREATION_GUIDE.md | 2 - .../agent_files/canonical/ISSUE_LABELS.md | 2 - .../agent_files/canonical/ISSUE_TYPES.md | 2 - .../agent_files/canonical/LABELING.md | 2 - .../agent_files/canonical/LABEL_STRATEGY.md | 3 - .../canonical/PR_CREATION_PROCESS.md | 3 - .../agent_files/canonical/PR_LABELS.md | 3 - .../references/agent_files/creating-skills.md | 2 - .../agent_files/docs/AGENT_CREATION.md | 4 +- .../docs/agent-audit-and-edit-pack.md | 2 - .../docs/lightspeed-two-part-pack.md | 2 - .../docs/linear-first-revision-pack.md | 2 - .../docs/linear-ready-template-pack.md | 4 +- .../agent_files/docs/memory-playbook.md | 2 - .../docs/minimal-linear-template-pack.md | 2 - .../docs/next-skill-pack-and-attach-plan.md | 2 - .../docs/preview-validation-checklist.md | 2 - .../lightspeed-agent-pilot-testing-guide.md | 2 - .../linear-app-skill-creator/SKILL.md | 2 - .../references/eval-and-trigger-rubric.md | 2 - .../references/linear-workflow-patterns.md | 2 - .../references/output-templates.md | 2 - .../memory/example-memory-files.md | 2 - .../memory/memory-validation-schema.md | 2 - .../basic-website-package-questionnaire.md | 2 - ...t-collection-fillable-pdf-questionnaire.md | 2 - .../content-collection-questionnaire.md | 2 - .../design-briefing-questionnaire.md | 2 - .../questionnaires/ecommerce-briefing-form.md | 2 - .../standard-website-package-questionnaire.md | 2 - .../tone-of-voice-questionnaire.md | 2 - .../tour-operator-blog-questionnaire.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../agent_files/rollout/focused-uat-plan.md | 2 - .../rollout/memory-uat-scorecard-example.md | 2 - .../rollout/memory-uat-scorecard.md | 2 - .../rollout/skill-directory-audit.md | 2 - .../rollout/team-onboarding-guide.md | 2 - .../rollout/teammate-rollout-checklist.md | 2 - .../agent_files/rollout/uat-index.md | 2 - .../skill-directory/skill-routing-guide.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../linear-advisor-agent/manifests/skills.md | 2 - .../manifests/validation.md | 2 - .../linear-app-skill-creator/SKILL.md | 2 - .../linear-decision-logger/SKILL.md | 2 - .../SKILL.md | 2 - .../linear-gap-analyzer/SKILL.md | 2 - .../linear-memory-maintenance/SKILL.md | 2 - .../references/memory-routing-guide.md | 2 - .../linear-momentum-auditor/SKILL.md | 2 - .../linear-project-pulse/SKILL.md | 2 - .../linear-skill-intake-onboarding/SKILL.md | 2 - .../linear-sub-issue-splitter/SKILL.md | 2 - .../linear-the-architect/SKILL.md | 2 - .../linear-triage-router/SKILL.md | 2 - .../linear-triage-rules-designer/SKILL.md | 2 - .../linear-triage-sop-builder/SKILL.md | 2 - .../SKILL.md | 2 - .../linear-voice-of-customer/SKILL.md | 2 - .../markdown-output-formatter/SKILL.md | 2 - .../skills/local/Presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../Presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../local/Spreadsheets/API_QUICK_START.md | 2 - .../skills/local/Spreadsheets/SKILL.md | 2 - .../skills/local/Spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../Spreadsheets/routing/google_sheets.md | 2 - .../local/Spreadsheets/style_guidelines.md | 2 - .../skills/local/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../skills/local/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../local/documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../local/documents/tasks/comments_manage.md | 2 - .../local/documents/tasks/compare_diff.md | 2 - .../local/documents/tasks/create_edit.md | 2 - .../local/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../local/documents/tasks/images_figures.md | 2 - .../local/documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../local/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../local/documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../local/documents/tasks/toc_workflow.md | 2 - .../local/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../skills/local/imagegen/SKILL.md | 2 - .../skills/local/imagegen/references/cli.md | 2 - .../imagegen/references/codex-network.md | 2 - .../local/imagegen/references/image-api.md | 2 - .../local/imagegen/references/prompting.md | 2 - .../imagegen/references/sample-prompts.md | 2 - .../skills/local/openai-docs/SKILL.md | 2 - .../openai-docs/references/latest-model.md | 2 - .../openai-docs/references/prompting-guide.md | 2 - .../openai-docs/references/upgrade-guide.md | 2 - .../skills/local/pdf/SKILL.md | 2 - .../skills/local/plugin-creator/SKILL.md | 2 - .../references/installing-and-updating.md | 2 - .../references/plugin-json-spec.md | 2 - .../skills/local/skill-creator/SKILL.md | 2 - .../skill-creator/references/openai_yaml.md | 2 - .../skills/local/skill-installer/SKILL.md | 2 - agents/pagespeed-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/other/memory/todos.md | 2 - .../agent/other/memory/user-preferences.md | 2 - .../agent/references/client-sites.md | 2 - .../agent/references/finding-rubric.md | 2 - .../references/shared-drive-conventions.md | 2 - .../references/wordpress-audit-checklist.md | 2 - .../pagespeed-agent/agent/scripts/README.md | 2 - .../post-optimization-report-template.md | 2 - .../pre-optimization-report-template.md | 2 - .../agent/templates/report-template.md | 2 - .../pagespeed-agent/manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../pagespeed-agent/manifests/redactions.md | 2 - agents/pagespeed-agent/manifests/skills.md | 2 - .../manifests/validation-summary.md | 2 - .../builtins/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../builtins/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../documents/tasks/comments_manage.md | 2 - .../builtins/documents/tasks/compare_diff.md | 2 - .../builtins/documents/tasks/create_edit.md | 2 - .../builtins/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../documents/tasks/images_figures.md | 2 - .../documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../builtins/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../builtins/documents/tasks/toc_workflow.md | 2 - .../builtins/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../agent-attached/builtins/pdf/SKILL.md | 2 - .../builtins/presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../builtins/spreadsheets/API_QUICK_START.md | 2 - .../builtins/spreadsheets/SKILL.md | 2 - .../builtins/spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../spreadsheets/routing/google_sheets.md | 2 - .../builtins/spreadsheets/style_guidelines.md | 2 - .../agent-attached/frontend-skill/SKILL.md | 2 - .../hermes/audit-qa-validator/SKILL.md | 2 - .../client-site-context-manager/SKILL.md | 2 - .../references/context-templates.md | 2 - .../hermes/drive-report-organizer/SKILL.md | 2 - .../pagespeed-audit-comparison/SKILL.md | 2 - .../pagespeed-audit-onboarding/SKILL.md | 2 - .../pagespeed-audit-prioritizer/SKILL.md | 2 - .../pagespeed-audit-report-writer/SKILL.md | 2 - .../references/report-template.md | 2 - .../pagespeed-intake-normalizer/SKILL.md | 2 - .../references/brief-template.md | 2 - .../hermes/pagespeed-skill-router/SKILL.md | 2 - .../wordpress-pagespeed-diagnosis/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/playwright-testing-agent/README.md | 2 - .../configuration/plugins/github/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/other/agent_files/README.md | 2 - .../other/agent_files/business-context.md | 2 - .../other/agent_files/examples/README.md | 2 - .../examples/bugherd-failure-example.md | 2 - .../examples/figma-context-example.md | 2 - .../examples/playwright-spec-example.md | 2 - .../examples/prd-to-test-cases-example.md | 2 - .../examples/repo-analysis-example.md | 2 - .../requirements-traceability-example.md | 2 - .../other/agent_files/fixtures/README.md | 2 - .../fixtures/sample-figma-context.md | 2 - .../fixtures/sample-prd-excerpt.md | 2 - .../fixtures/sample-repo-analysis.md | 2 - .../memory/starter-memory-profile.md | 2 - .../agent/other/agent_files/memory/todos.md | 2 - .../agent_files/memory/user-preferences.md | 2 - .../other/agent_files/profiles/README.md | 2 - .../profiles/accessibility-smoke-profile.md | 2 - .../profiles/default-wordpress-profile.md | 2 - .../agent_files/profiles/lsxd-profile.md | 2 - .../profiles/visual-regression-profile.md | 2 - .../profiles/woocommerce-profile.md | 2 - .../agent/other/agent_files/prompts/README.md | 2 - .../agent-instructions-drift-audit-prompt.md | 2 - ...ttached-apps-reference-alignment-prompt.md | 2 - ...lightspeed-playwright-mcp-repair-prompt.md | 2 - ...tspeed-playwright-mcp-validation-prompt.md | 2 - .../prompts/prompt-library-audit-prompt.md | 2 - .../prompts/readme-refreshes-prompt.md | 2 - .../prompts/routing-audits-prompt.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - .../prompts/skills-routing-repair-prompt.md | 2 - .../skills-routing-validation-prompt.md | 2 - .../starter-prompts-alignment-prompt.md | 2 - ...validation-docs-tests-tightening-prompt.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../validation-reference-alignment-prompt.md | 2 - .../validation-scripts-tightening-prompt.md | 2 - .../agent_files/references/CONNECTORS.md | 2 - .../other/agent_files/references/README.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/bugherd-failure-logging.md | 2 - .../references/figma-to-test-context.md | 2 - .../references/github-repo-analysis.md | 2 - .../references/mcp-tooling-notes.md | 2 - .../playwright-testing-principles.md | 2 - .../references/prd-to-test-case-workflow.md | 2 - .../agent_files/references/source-priority.md | 2 - .../references/validation-guide.md | 2 - .../wordpress-woocommerce-test-coverage.md | 2 - .../agent/other/agent_files/schemas/README.md | 2 - .../agent/other/agent_files/scripts/README.md | 2 - .../other/agent_files/templates/README.md | 2 - .../templates/bugherd-failure-template.md | 2 - .../figma-context-extraction-template.md | 2 - .../templates/playwright-spec-template.md | 2 - .../templates/repo-analysis-template.md | 2 - .../requirements-traceability-template.md | 2 - .../templates/test-case-template.md | 2 - .../templates/test-suite-plan-template.md | 2 - .../agent/other/agent_files/tests/README.md | 2 - .../tests/schema-validation-tests.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../agent-attached/frontend-skill/SKILL.md | 2 - .../hermes/test-pack-builder/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/prd-agent/README.md | 2 - agents/prd-agent/agent/assets/README.md | 2 - .../configuration/plugins/github/README.md | 2 - agents/prd-agent/agent/instructions/AGENTS.md | 2 - .../agent/references/business-context.md | 2 - .../prd-agent/agent/references/docs/README.md | 2 - .../references/docs/agent-operating-model.md | 2 - .../agent/references/docs/phase-4-index.md | 2 - .../docs/phased-builder-sequence.md | 2 - .../agent/references/docs/rebuild-guide.md | 2 - .../agent/references/examples/README.md | 2 - .../references/examples/memory/README.md | 2 - .../references/examples/templates/README.md | 2 - .../templates/example-estimate-pack.md | 2 - .../templates/example-gap-analysis.md | 2 - .../templates/example-handoff-pack.md | 2 - .../templates/example-planning-brief.md | 2 - .../examples/templates/example-prd.md | 2 - .../example-project-intake-summary.md | 2 - .../templates/example-quality-review.md | 2 - .../templates/example-technical-brief.md | 2 - .../templates/example-validation-report.md | 2 - .../agent/references/fixtures/README.md | 2 - .../conflicting-estimate-readiness.fixture.md | 2 - .../fixtures/conflicting-source.fixture.md | 2 - .../fixtures/estimate-ready.fixture.md | 2 - .../fixtures/handoff-ready.fixture.md | 2 - .../fixtures/mixed-input-intake.fixture.md | 2 - .../fixtures/not-estimate-ready.fixture.md | 2 - .../fixtures/strong-brief.fixture.md | 2 - .../references/fixtures/strong-prd.fixture.md | 2 - ...lidator-failure-readme-coverage.fixture.md | 2 - ...idator-failure-schema-alignment.fixture.md | 2 - .../references/fixtures/weak-brief.fixture.md | 2 - .../fixtures/weak-handoff.fixture.md | 2 - .../references/fixtures/weak-prd.fixture.md | 2 - .../agent/references/intake/README.md | 2 - .../intake/approval-gate-checklist.md | 2 - .../agent/references/intake/claim-register.md | 2 - .../references/intake/exclusions-register.md | 2 - .../agent/references/intake/field-library.md | 2 - .../intake/intake-wizard-template.md | 2 - .../intake/memory-promotion-checklist.md | 2 - .../intake/risk-review-checklist.md | 2 - .../intake/source-approval-register.md | 2 - .../agent/references/intake/source-map.md | 2 - .../project-state.md | 2 - .../references/memory-templates/README.md | 2 - .../memory-templates/defaults/README.md | 2 - .../defaults/activeContext.md | 2 - .../defaults/productContext.md | 2 - .../memory-templates/defaults/progress.md | 2 - .../memory-templates/defaults/projectbrief.md | 2 - .../defaults/systemPatterns.md | 2 - .../memory-templates/defaults/techContext.md | 2 - .../memory-templates/defaults/todos.md | 2 - .../defaults/user-preferences.md | 2 - .../memory-templates/schemas/README.md | 2 - .../agent/references/profiles/README.md | 2 - .../agent/references/prompts/README.md | 2 - ...-context-and-reference-alignment-prompt.md | 2 - .../connector-and-source-alignment-prompt.md | 2 - ...elpers-and-attach-support-skills-prompt.md | 2 - ...ghtspeed-local-skill-update-prompt-pack.md | 2 - .../prompts/readme-refresh-prompt.md | 2 - .../prompts/recommended-cleanup-prompt.md | 2 - .../prompts/routing-audit-prompt.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - .../prompts/skills-attachment-sync-prompt.md | 2 - ...kills-boundary-and-overlap-audit-prompt.md | 2 - ...lls-routing-and-directory-repair-prompt.md | 2 - ...routing-and-directory-validation-prompt.md | 2 - ...er-prompts-and-tagline-alignment-prompt.md | 2 - ...ort-layer-instructions-alignment-prompt.md | 2 - ...upport-layer-promotion-sequencer-prompt.md | 2 - .../template-example-fixture-parity-prompt.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../agent/references/references/CONNECTORS.md | 2 - .../agent/references/references/README.md | 2 - .../references/references/SKILL_INVENTORY.md | 2 - .../references/skill-parity-audit.md | 2 - .../references/skill-routing-spec.md | 2 - ...routing-and-directory-validation-report.md | 2 - .../references/validation-documentation.md | 2 - .../references/validation-test-coverage.md | 2 - .../agent/references/rollout/README.md | 2 - .../rollout/rebuild-rollout-checklist.md | 2 - ...kill-parity-manual-resolution-checklist.md | 2 - .../agent/references/schemas/README.md | 2 - .../agent/references/tests/README.md | 2 - .../tests/validation-pack/README.md | 2 - .../tests/validation-pack/test-matrix.md | 2 - agents/prd-agent/agent/scripts/README.md | 2 - .../agent/scripts/validation-pack/README.md | 2 - .../scripts/validation-pack/checklist.md | 2 - agents/prd-agent/agent/templates/README.md | 2 - .../agent/templates/estimate-pack-template.md | 2 - .../agent/templates/gap-analysis-template.md | 2 - .../agent/templates/handoff-pack-template.md | 2 - .../templates/planning-brief-template.md | 2 - .../prd-agent/agent/templates/prd-template.md | 2 - .../project-intake-summary-template.md | 2 - .../project-status-update-template.md | 2 - .../templates/quality-review-template.md | 2 - .../templates/technical-brief-template.md | 2 - .../templates/validation-report-template.md | 2 - agents/prd-agent/manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - agents/prd-agent/manifests/redactions.md | 2 - agents/prd-agent/manifests/skills.md | 2 - .../prd-agent/manifests/validation-summary.md | 2 - .../hermes/evidence-locking/SKILL.md | 2 - .../hermes/implementation-planning/SKILL.md | 2 - .../hermes/intake-routing/SKILL.md | 2 - .../hermes/issue-drafting/SKILL.md | 2 - .../hermes/launch-handoff-support/SKILL.md | 2 - .../lightspeed-approval-gate-manager/SKILL.md | 2 - .../examples/approval-gate-examples.md | 2 - .../references/approval-gates.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/decision-log-rules.md | 2 - .../references/go-no-go-rules.md | 2 - .../templates/approval-checklist.md | 2 - .../templates/decision-log.md | 2 - .../templates/go-no-go-pack.md | 2 - .../tests/fixtures/approval-cases.md | 2 - .../hermes/lightspeed-change-control/SKILL.md | 2 - .../examples/change-request-examples.md | 2 - .../references/change-control-rules.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/estimate-impact-rules.md | 2 - .../references/qa-impact-rules.md | 2 - .../references/scope-impact-rubric.md | 2 - .../rollout/rename-notes.md | 2 - .../templates/approval-needed.md | 2 - .../templates/change-request-assessment.md | 2 - .../templates/prd-delta.md | 2 - .../tests/fixtures/change-cases.md | 2 - .../lightspeed-delivery-planner/SKILL.md | 2 - .../examples/implementation-plan-example.md | 2 - .../examples/task-breakdown-example.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/dependency-rules.md | 2 - .../references/implementation-sequencing.md | 2 - .../references/task-breakdown-rules.md | 2 - .../rollout/consolidation-notes.md | 2 - .../templates/asana-task.md | 2 - .../templates/github-issue.md | 2 - .../templates/implementation-plan.md | 2 - .../templates/task-pack.md | 2 - .../tests/fixtures/delivery-cases.md | 2 - .../lightspeed-estimation-planner/SKILL.md | 2 - .../examples/estimate-basic.md | 2 - .../examples/estimate-high-risk.md | 2 - .../profiles/ai-readiness.md | 2 - .../profiles/plugin-product.md | 2 - .../profiles/publishing.md | 2 - .../profiles/tourism.md | 2 - .../profiles/woocommerce.md | 2 - .../profiles/wordpress-block-theme.md | 2 - .../references/complexity-factors.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/estimation-model.md | 2 - .../references/risk-buffer-rules.md | 2 - .../references/source-priority.md | 2 - .../templates/estimate-change-impact.md | 2 - .../templates/estimate.md | 2 - .../tests/fixtures/estimate-cases.md | 2 - .../SKILL.md | 2 - .../examples/routing-scenarios.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/project-lifecycle.md | 2 - .../references/source-priority.md | 2 - .../rollout/migration-notes.md | 2 - .../templates/handoff-card.md | 2 - .../templates/route-card.md | 2 - .../tests/fixtures/routing-scenarios.md | 2 - .../hermes/lightspeed-prd-reviewer/SKILL.md | 2 - .../examples/review-report-example.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/evidence-standards.md | 2 - .../references/readiness-levels.md | 2 - .../references/review-rubric.md | 2 - .../rollout/rename-notes.md | 2 - .../templates/fix-list.md | 2 - .../templates/review-report.md | 2 - .../tests/fixtures/review-cases.md | 2 - .../hermes/lightspeed-prd-writer/SKILL.md | 2 - .../examples/good-prd.md | 2 - .../examples/prd-update-example.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/prd-rules.md | 2 - .../references/prd-section-guidance.md | 2 - .../references/source-priority.md | 2 - .../rollout/rename-notes.md | 2 - .../templates/prd-delta.md | 2 - .../templates/prd-update.md | 2 - .../lightspeed-prd-writer/templates/prd.md | 2 - .../tests/fixtures/prd-cases.md | 2 - .../hermes/lightspeed-project-intake/SKILL.md | 2 - .../examples/intake-before-after.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/evidence-quality.md | 2 - .../references/intake-rules.md | 2 - .../references/source-priority.md | 2 - .../rollout/consolidation-notes.md | 2 - .../templates/evidence-register.md | 2 - .../templates/open-questions.md | 2 - .../templates/project-intake-record.md | 2 - .../tests/fixtures/intake-cases.md | 2 - .../SKILL.md | 2 - .../examples/project-state-example.md | 2 - .../defaults/lightspeed-delivery-defaults.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/memory-policy.md | 2 - .../references/project-state-rules.md | 2 - .../references/source-priority.md | 2 - .../templates/assumption-register.md | 2 - .../templates/decision-log.md | 2 - .../templates/open-loop-register.md | 2 - .../templates/project-state.md | 2 - .../tests/fixtures/memory-cases.md | 2 - .../lightspeed-project-pack-exporter/SKILL.md | 2 - .../examples/project-pack-example.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/export-structure.md | 2 - .../references/file-naming.md | 2 - .../references/source-notes-rules.md | 2 - .../rollout/rename-notes.md | 2 - .../templates/pack-index.md | 2 - .../templates/project-pack-readme.md | 2 - .../templates/review-checklist.md | 2 - .../templates/source-notes.md | 2 - .../tests/fixtures/project-pack-cases.md | 2 - .../tests/fixtures/sample-pack/README.md | 2 - .../lightspeed-project-research/SKILL.md | 2 - .../examples/research-brief-example.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/research-scope.md | 2 - .../references/source-confidence.md | 2 - .../references/source-priority.md | 2 - .../templates/constraints-and-risks.md | 2 - .../templates/research-brief.md | 2 - .../templates/source-inventory.md | 2 - .../tests/fixtures/research-cases.md | 2 - .../SKILL.md | 2 - .../examples/status-reports.md | 2 - .../references/client-safe-boundaries.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/source-priority.md | 2 - .../references/status-rules.md | 2 - .../templates/blocker-summary.md | 2 - .../templates/client-status.md | 2 - .../templates/internal-status.md | 2 - .../tests/fixtures/status-cases.md | 2 - .../hermes/lightspeed-qa-planner/SKILL.md | 2 - .../examples/qa-plan-example.md | 2 - .../references/accessibility-checks.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/editor-experience-checks.md | 2 - .../references/postlaunch-checks.md | 2 - .../references/prelaunch-checks.md | 2 - .../references/qa-scope.md | 2 - .../references/tracking-checks.md | 2 - .../rollout/consolidation-notes.md | 2 - .../templates/acceptance-test-matrix.md | 2 - .../templates/postlaunch-checklist.md | 2 - .../templates/prelaunch-checklist.md | 2 - .../templates/qa-plan.md | 2 - .../tests/fixtures/qa-plan-cases.md | 2 - .../hermes/lightspeed-qa-triage/SKILL.md | 2 - .../examples/qa-findings.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/finding-routing.md | 2 - .../references/launch-blocker-rules.md | 2 - .../references/qa-severity-rubric.md | 2 - .../references/retest-rules.md | 2 - .../rollout/rename-notes.md | 2 - .../templates/issue-draft.md | 2 - .../templates/qa-finding-triage.md | 2 - .../templates/retest-plan.md | 2 - .../tests/fixtures/qa-finding-cases.md | 2 - .../SKILL.md | 2 - .../examples/release-handoff-example.md | 2 - .../references/client-safe-boundaries.md | 2 - .../references/cross-skill-routing.md | 2 - .../references/release-handoff-rules.md | 2 - .../references/support-transition-rules.md | 2 - .../templates/client-handover.md | 2 - .../templates/postlaunch-monitoring.md | 2 - .../templates/release-handoff.md | 2 - .../templates/support-transition.md | 2 - .../tests/fixtures/release-cases.md | 2 - .../hermes/memory-management/SKILL.md | 2 - .../hermes/prd-generation/SKILL.md | 2 - .../agent-attached/hermes/review-qa/SKILL.md | 2 - .../hermes/technical-brief-deep-dive/SKILL.md | 2 - .../hermes/validation-support/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/prd-factory-planner-agent/README.md | 2 - .../tests/schema-validation-tests.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/other/agent_files/activeContext.md | 2 - .../agent_files/decisions/decision-log.md | 2 - .../agent/other/agent_files/productContext.md | 2 - .../agent/other/agent_files/progress.md | 2 - .../agent/other/agent_files/projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../agent/other/agent_files/systemPatterns.md | 2 - .../agent/other/agent_files/tasks/_index.md | 2 - .../agent/other/agent_files/techContext.md | 2 - .../agent/other/agent_files/todos.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../activeContext.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../memory/bicycling-beyond-the-bike/todos.md | 2 - .../cape-trails-safaris/activeContext.md | 2 - .../cape-trails-safaris/projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../other/memory/cape-trails-safaris/todos.md | 2 - .../lightspeedwp-agency/activeContext.md | 2 - .../decisions/decision-log.md | 2 - .../lightspeedwp-agency/productContext.md | 2 - .../memory/lightspeedwp-agency/progress.md | 2 - .../lightspeedwp-agency/projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../lightspeedwp-agency/systemPatterns.md | 2 - .../lightspeedwp-agency/tasks/_index.md | 2 - .../memory/lightspeedwp-agency/techContext.md | 2 - .../activeContext.md | 2 - .../projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../novanews-reporter-dashboard/todos.md | 2 - .../activeContext.md | 2 - .../projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../todos.md | 2 - .../activeContext.md | 2 - .../projectbrief.md | 2 - .../safari-lodge-wordpress-rebuild/todos.md | 2 - .../activeContext.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../southern-destinations-asc-faqs/todos.md | 2 - .../activeContext.md | 2 - .../progress.md | 2 - .../projectbrief.md | 2 - .../risks/assumptions-and-risks.md | 2 - .../systemPatterns.md | 2 - .../tasks/_index.md | 2 - .../techContext.md | 2 - .../tour-operator-wordpress-refresh/todos.md | 2 - .../activeContext.md | 2 - .../wordpress-configuration-agent/todos.md | 2 - .../Files/Intake/blocking-gaps-checklist.md | 2 - .../Files/Intake/exclusions-register.md | 2 - .../Intake/memory-promotion-checklist.md | 2 - .../Files/Intake/project-memory-summary.md | 2 - .../Files/Intake/questionnaire-source-map.md | 2 - .../Files/Intake/risk-and-review-checklist.md | 2 - .../Files/Intake/source-approval-register.md | 2 - .../agent_files/docs/MEMORY_POLICY_SOP.md | 2 - .../docs/example-contexts-index.md | 2 - .../agent-specific-uat-guidance.md | 2 - .../example-contexts-index.md | 2 - .../lightspeedwp-agency-example.md | 2 - .../lsx-design-system-example.md | 2 - .../preview-validation/master-qa-checklist.md | 2 - .../repeatable-preview-prompts.md | 2 - .../repeatable-preview-test-prompts.md | 2 - .../touroperator-solutions-example.md | 2 - .../references/agent_files/docs/uat/README.md | 2 - .../docs/uat/prd-factory-pilot-readiness.md | 2 - .../uat/prd-factory-team-testing-guide.md | 2 - .../agent_files/docs/uat/uat-checklist.md | 2 - .../CONNECTORS.md | 2 - .../README.md | 2 - .../agent-instructions/AGENT_INSTRUCTIONS.md | 2 - .../agent-instructions/AGENT_PROFILE.md | 2 - .../business-context.md | 2 - .../intake/intake-review-table.md | 2 - .../intake/memory-promotion-checklist.md | 2 - .../intake/questionnaire-source-map.md | 2 - .../knowledge/KNOWLEDGE_UPLOAD_CHECKLIST.md | 2 - .../knowledge/LIGHTSPEED_VALUES_AND_RULES.md | 2 - .../skills/SKILL_INVENTORY.md | 2 - .../skills/SPECIALIST_ROUTING_MATRIX.md | 2 - .../test-prompts/CONVERSATION_STARTERS.md | 2 - .../test-prompts/FIRST_VALIDATION_PROMPT.md | 2 - .../workflow/APPROVAL_GATES.md | 2 - .../workflow/OPERATING_WORKFLOW.md | 2 - .../workflow/OUTPUT_MODES.md | 2 - .../agent_files/questionnaires/MANIFEST.md | 2 - .../agent_files/questionnaires/README.md | 2 - .../basic-website-package-questionnaire.md | 2 - ...t-collection-fillable-pdf-questionnaire.md | 2 - .../content-collection-questionnaire.md | 2 - .../design-briefing-questionnaire.md | 2 - .../questionnaires/ecommerce-briefing-form.md | 2 - .../standard-website-package-questionnaire.md | 2 - .../tone-of-voice-questionnaire.md | 2 - .../tour-operator-blog-questionnaire.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../Intake/agent-context-routing-template.md | 2 - .../Files/Intake/claim-register-template.md | 2 - .../Files/Intake/handoff-output-template.md | 2 - .../templates/DOCUMENT_FORMATTING_STANDARD.md | 2 - .../templates/GITHUB_ISSUE_TEMPLATE.md | 2 - .../templates/MEMORY_BANK_STRUCTURE.md | 2 - .../templates/PRD_TEMPLATE.md | 2 - .../templates/PROJECT_PACK_STRUCTURE.md | 2 - .../templates/TECHNICAL_BRIEF_TEMPLATE.md | 2 - .../intake-review-table.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../content-file-validator/README.md | 2 - .../content-file-validator/SKILL.md | 2 - .../references/example-validation-report.md | 2 - .../references/markdown-validation-rules.md | 2 - .../references/schema-customisation.md | 2 - .../references/semver-versioning-rules.md | 2 - .../tests/invalid-version.md | 2 - .../tests/markdown-issues.md | 2 - .../tests/missing-frontmatter.md | 2 - .../tests/valid-example.md | 2 - .../agent-attached/evidence-locker/SKILL.md | 2 - .../SKILL.md | 2 - .../assets/acceptance-test-plan-template.md | 2 - .../assets/go-no-go-acceptance-template.md | 2 - .../assets/issue-test-matrix-template.md | 2 - .../requirement-test-matrix-template.md | 2 - .../assets/test-script-template.md | 2 - .../references/acceptance-test-workflow.md | 2 - .../accessibility-responsive-tests.md | 2 - .../references/block-plugin-tests.md | 2 - .../references/figma-parity-tests.md | 2 - .../references/report-template.md | 2 - .../references/test-scenario-types.md | 2 - .../references/wordpress-block-theme-tests.md | 2 - .../lightspeed-approval-gate-manager/SKILL.md | 2 - .../assets/approval-summary-template.md | 2 - .../assets/decision-log-template.md | 2 - .../assets/gate-checklist-template.md | 2 - .../assets/risk-register-template.md | 2 - .../stakeholder-review-pack-template.md | 2 - .../references/approval-gate-workflow.md | 2 - .../references/decision-log-rules.md | 2 - .../references/gate-types.md | 2 - .../references/stakeholder-review-rules.md | 2 - .../references/status-model.md | 2 - .../references/wordpress-project-gates.md | 2 - .../lightspeed-change-request-router/SKILL.md | 2 - .../assets/approval-checklist-template.md | 2 - .../assets/artifact-update-notes-template.md | 2 - .../assets/change-log-template.md | 2 - .../change-request-assessment-template.md | 2 - .../assets/client-summary-template.md | 2 - .../references/approval-rules.md | 2 - .../references/artifact-update-rules.md | 2 - .../references/change-request-workflow.md | 2 - .../references/classification-rules.md | 2 - .../references/impact-analysis-rules.md | 2 - .../references/report-template.md | 2 - .../references/specialist-routing.md | 2 - .../SKILL.md | 2 - .../block-plugin-requirements-template.md | 2 - .../assets/component-block-map-template.md | 2 - .../assets/github-issue-seeds-template.md | 2 - .../assets/open-questions-template.md | 2 - .../assets/technical-brief-template.md | 2 - .../assets/template-pattern-map-template.md | 2 - .../assets/token-map-template.md | 2 - .../references/block-plugin-requirements.md | 2 - .../references/block-theme-requirements.md | 2 - .../references/component-to-block-mapping.md | 2 - .../references/editor-experience.md | 2 - .../references/figma-evidence-intake.md | 2 - .../references/pattern-template-mapping.md | 2 - .../references/qa-handoff.md | 2 - .../references/technical-brief-workflow.md | 2 - .../references/theme-json-token-mapping.md | 2 - .../lightspeed-github-issue-drafter/SKILL.md | 2 - .../assets/epic-issue-template.md | 2 - .../assets/issue-index-template.md | 2 - .../assets/issue-template.md | 2 - .../assets/launch-qa-issue-template.md | 2 - .../assets/review-checklist-template.md | 2 - .../references/acceptance-criteria-rules.md | 2 - .../references/dependency-rules.md | 2 - .../references/issue-drafting-workflow.md | 2 - .../references/issue-templates.md | 2 - .../references/label-and-milestone-rules.md | 2 - .../references/qa-and-review-rules.md | 2 - .../references/wordpress-issue-rules.md | 2 - .../SKILL.md | 2 - .../assets/branch-pr-strategy-template.md | 2 - .../assets/dependency-map-template.md | 2 - .../assets/handoff-notes-template.md | 2 - .../assets/implementation-plan-template.md | 2 - .../assets/risk-register-template.md | 2 - .../assets/wave-plan-template.md | 2 - .../assets/workstream-plan-template.md | 2 - .../references/branch-pr-strategy.md | 2 - .../references/implementation-workflow.md | 2 - .../references/risk-and-decision-rules.md | 2 - .../references/testing-and-qa.md | 2 - .../references/wave-planning.md | 2 - .../wordpress-implementation-rules.md | 2 - .../references/workstream-model.md | 2 - .../lightspeed-intake-onboarding/SKILL.md | 2 - .../lightspeed-launch-task-router/SKILL.md | 2 - .../go-no-go-routing-summary-template.md | 2 - .../launch-router-checklist-template.md | 2 - .../assets/routing-report-template.md | 2 - .../specialist-prompt-starters-template.md | 2 - .../assets/workstream-routing-template.md | 2 - .../references/approval-gates.md | 2 - .../references/dependency-sequencing.md | 2 - .../launch-task-routing-workflow.md | 2 - .../references/launch-workstreams.md | 2 - .../references/specialist-skill-routing.md | 2 - .../lightspeed-prd-generator/SKILL.md | 2 - .../assets/discovery-summary-template.md | 2 - .../assets/open-questions-template.md | 2 - .../assets/persona-template.md | 2 - .../assets/prd-template.md | 2 - .../assets/requirements-template.md | 2 - .../assets/success-metrics-template.md | 2 - .../assets/user-story-template.md | 2 - .../references/acceptance-criteria-rules.md | 2 - .../references/approval-gates.md | 2 - .../references/figma-design-system-rules.md | 2 - .../references/prd-workflow.md | 2 - .../references/project-types.md | 2 - .../references/success-metrics.md | 2 - .../references/wordpress-prd-rules.md | 2 - .../lightspeed-prd-task-manager/SKILL.md | 2 - .../assets/full-project-pack-structure.md | 2 - .../assets/issue-template.md | 2 - .../assets/prd-template.md | 2 - .../assets/task-plan-template.md | 2 - .../assets/technical-brief-template.md | 2 - .../references/acceptance-criteria.md | 2 - .../references/agent-spec.md | 2 - .../figma-wordpress-technical-brief.md | 2 - .../references/github-issue-drafts.md | 2 - .../references/memory-bank.md | 2 - .../references/prd-template.md | 2 - .../references/qa-and-launch-routing.md | 2 - .../references/task-breakdown-rules.md | 2 - .../references/wordpress-standards.md | 2 - .../SKILL.md | 2 - .../assets/README-template.md | 2 - .../assets/file-index-template.md | 2 - .../assets/next-actions-template.md | 2 - .../assets/pack-status-template.md | 2 - .../assets/review-checklist-template.md | 2 - .../assets/source-inventory-template.md | 2 - .../references/file-naming-rules.md | 2 - .../references/pack-quality-checklist.md | 2 - .../references/pack-workflow.md | 2 - .../references/source-classification.md | 2 - .../lightspeed-prd-task-reviewer/SKILL.md | 2 - .../assets/gap-register-template.md | 2 - .../assets/go-no-go-template.md | 2 - .../assets/issue-quality-template.md | 2 - .../assets/review-report-template.md | 2 - .../references/issue-review-rules.md | 2 - .../references/prd-review-rules.md | 2 - .../references/readiness-scoring.md | 2 - .../references/report-template.md | 2 - .../references/review-workflow.md | 2 - .../references/task-review-rules.md | 2 - .../technical-brief-review-rules.md | 2 - .../lightspeed-project-intake-router/SKILL.md | 2 - .../assets/kickoff-pack-template.md | 2 - .../assets/missing-inputs-template.md | 2 - .../assets/prompt-starters-template.md | 2 - .../assets/source-inventory-template.md | 2 - .../assets/workflow-route-template.md | 2 - .../references/approval-gates.md | 2 - .../references/clarifying-questions.md | 2 - .../references/intake-workflow.md | 2 - .../references/project-type-classification.md | 2 - .../references/source-inventory-rules.md | 2 - .../references/specialist-routing.md | 2 - .../SKILL.md | 2 - .../assets/README-template.md | 2 - .../assets/activeContext-template.md | 2 - .../assets/assumptions-risks-template.md | 2 - .../assets/decision-log-template.md | 2 - .../assets/handoff-summary-template.md | 2 - .../assets/productContext-template.md | 2 - .../assets/progress-template.md | 2 - .../assets/projectbrief-template.md | 2 - .../assets/systemPatterns-template.md | 2 - .../assets/task-index-template.md | 2 - .../assets/techContext-template.md | 2 - .../references/file-definitions.md | 2 - .../references/handoff-rules.md | 2 - .../references/memory-bank-workflow.md | 2 - .../references/status-and-decision-rules.md | 2 - .../references/task-index-rules.md | 2 - .../references/wordpress-project-memory.md | 2 - .../lightspeed-project-researcher/SKILL.md | 2 - .../assets/decision-blockers-template.md | 2 - .../assets/open-questions-template.md | 2 - .../assets/research-report-template.md | 2 - .../assets/source-inventory-template.md | 2 - .../references/evidence-classification.md | 2 - .../references/figma-research.md | 2 - .../references/github-research.md | 2 - .../references/prd-handoff.md | 2 - .../references/research-workflow.md | 2 - .../references/source-inventory.md | 2 - .../references/wordpress-site-research.md | 2 - .../SKILL.md | 2 - .../assets/client-update-template.md | 2 - .../assets/decision-update-template.md | 2 - .../internal-delivery-report-template.md | 2 - .../launch-readiness-snapshot-template.md | 2 - .../assets/weekly-status-template.md | 2 - .../references/audience-rules.md | 2 - .../references/report-templates.md | 2 - .../references/status-model.md | 2 - .../references/status-report-workflow.md | 2 - .../references/update-examples.md | 2 - .../references/workstream-model.md | 2 - .../lightspeed-qa-findings-router/SKILL.md | 2 - .../assets/client-summary-template.md | 2 - .../assets/github-issue-draft-template.md | 2 - .../assets/launch-blocker-list-template.md | 2 - .../assets/qa-findings-register-template.md | 2 - .../assets/retest-checklist-template.md | 2 - .../assets/workstream-routing-template.md | 2 - .../references/github-issue-drafting.md | 2 - .../references/qa-findings-workflow.md | 2 - .../references/report-template.md | 2 - .../references/retest-rules.md | 2 - .../references/severity-and-launch-status.md | 2 - .../references/workstream-routing.md | 2 - .../SKILL.md | 2 - .../assets/client-handoff-template.md | 2 - .../assets/internal-handoff-template.md | 2 - .../assets/known-issues-register-template.md | 2 - .../assets/post-launch-monitoring-template.md | 2 - .../assets/release-notes-template.md | 2 - .../assets/support-transition-template.md | 2 - .../references/client-handoff-rules.md | 2 - .../references/known-issues-rules.md | 2 - .../references/post-launch-monitoring.md | 2 - .../references/release-handoff-workflow.md | 2 - .../references/release-notes-rules.md | 2 - .../references/support-transition-rules.md | 2 - .../SKILL.md | 2 - .../assets/coverage-summary-template.md | 2 - .../assets/gap-register-template.md | 2 - .../assets/orphan-task-report-template.md | 2 - .../assets/requirement-register-template.md | 2 - .../assets/traceability-matrix-template.md | 2 - .../references/coverage-rules.md | 2 - .../references/qa-coverage-rules.md | 2 - .../references/report-template.md | 2 - .../references/requirement-classification.md | 2 - .../references/traceability-workflow.md | 2 - .../references/wordpress-traceability.md | 2 - .../SKILL.md | 2 - .../assets/acceptance-test-map-template.md | 2 - .../assets/dependency-map-template.md | 2 - .../assets/epic-map-template.md | 2 - .../assets/github-issue-template.md | 2 - .../assets/implementation-waves-template.md | 2 - .../assets/task-plan-template.md | 2 - .../references/acceptance-criteria.md | 2 - .../dependency-and-wave-planning.md | 2 - .../references/estimation-models.md | 2 - .../references/issue-draft-rules.md | 2 - .../references/qa-mapping.md | 2 - .../references/task-breakdown-workflow.md | 2 - .../references/wordpress-task-rules.md | 2 - .../references/workstream-model.md | 2 - .../markdown-content-validator/README.md | 2 - .../markdown-content-validator/SKILL.md | 2 - .../references/example-validation-report.md | 2 - .../references/markdown-validation-rules.md | 2 - .../references/schema-customisation.md | 2 - .../references/semver-versioning-rules.md | 2 - .../tests/invalid-version.md | 2 - .../markdown-content-validation-report.md | 2 - .../tests/markdown-issues.md | 2 - .../tests/missing-frontmatter.md | 2 - .../tests/valid-example.md | 2 - .../SKILL.md | 2 - .../references/output-templates.md | 2 - .../references/qa-rubric.md | 2 - .../references/workflow.md | 2 - .../skills/local/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../skills/local/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../local/documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../local/documents/tasks/comments_manage.md | 2 - .../local/documents/tasks/compare_diff.md | 2 - .../local/documents/tasks/create_edit.md | 2 - .../local/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../local/documents/tasks/images_figures.md | 2 - .../local/documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../local/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../local/documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../local/documents/tasks/toc_workflow.md | 2 - .../local/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../skills/local/imagegen/SKILL.md | 2 - .../skills/local/imagegen/references/cli.md | 2 - .../imagegen/references/codex-network.md | 2 - .../local/imagegen/references/image-api.md | 2 - .../local/imagegen/references/prompting.md | 2 - .../imagegen/references/sample-prompts.md | 2 - .../skills/local/openai-docs/SKILL.md | 2 - .../openai-docs/references/latest-model.md | 2 - .../openai-docs/references/prompting-guide.md | 2 - .../openai-docs/references/upgrade-guide.md | 2 - .../skills/local/pdf/SKILL.md | 2 - .../skills/local/plugin-creator/SKILL.md | 2 - .../references/installing-and-updating.md | 2 - .../references/plugin-json-spec.md | 2 - .../skills/local/presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../skills/local/skill-creator/SKILL.md | 2 - .../skill-creator/references/openai_yaml.md | 2 - .../skills/local/skill-installer/SKILL.md | 2 - .../local/spreadsheets/API_QUICK_START.md | 2 - .../skills/local/spreadsheets/SKILL.md | 2 - .../skills/local/spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../spreadsheets/routing/google_sheets.md | 2 - .../local/spreadsheets/style_guidelines.md | 2 - .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- agents/proposal-desk-agent/README.md | 2 - .../plugin-cache/figma/local/README.md | 2 - .../plugin-cache/github/local/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../references/agent_files/CONNECTORS.md | 2 - .../agent_files/business-context.md | 2 - .../content-collection-questionnaire.md | 2 - .../design-briefing-questionnaire.md | 2 - .../references/agent_files/docs/README.md | 2 - .../agent_files/docs/app-usage-guide.md | 2 - .../intake/agent-context-routing-template.md | 2 - .../docs/intake/approval-gate-checklist.md | 2 - .../docs/intake/blocking-gaps-checklist.md | 2 - .../docs/intake/claim-register-template.md | 2 - .../docs/intake/exclusions-register.md | 2 - .../docs/intake/handoff-output-template.md | 2 - .../docs/intake/intake-review-table.md | 2 - .../docs/intake/memory-promotion-checklist.md | 2 - .../docs/intake/project-memory-summary.md | 2 - .../docs/intake/questionnaire-source-map.md | 2 - .../docs/intake/risk-and-review-checklist.md | 2 - .../docs/intake/source-approval-register.md | 2 - .../strict-preview-validation-checklist.md | 2 - .../docs/output-template-library.md | 2 - .../docs/proposal-output-format-guide.md | 2 - .../agent_files/ecommerce-briefing-form.md | 2 - .../lightspeed-agent-pilot-testing-guide.md | 2 - ...speed-general-agent-status-pilot-prompt.md | 2 - .../references/agent_files/rollout/README.md | 2 - .../lightspeed-agent-pilot-testing-guide.md | 2 - ...speed-general-agent-status-pilot-prompt.md | 2 - ...oposal-desk-google-sheets-canvas-prompt.md | 2 - ...posal-desk-google-sheets-workbook-guide.md | 2 - .../rollout/proposal-desk-testing-rubric.md | 2 - .../skill-directory/skill-routing-guide.md | 2 - .../standard-website-package-questionnaire.md | 2 - .../tone-of-voice-questionnaire.md | 2 - .../tour-operator-blog-questionnaire.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../agent/templates/README.md | 2 - .../templates/executive-summary-template.md | 2 - .../agent/templates/gap-tracker-template.md | 2 - .../templates/internal-follow-up-template.md | 2 - .../templates/proposal-audience-templates.md | 2 - .../agent/templates/review-notes-template.md | 2 - .../templates/section-response-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../proposal-desk-agent/manifests/skills.md | 2 - .../manifests/validation-summary.md | 2 - .../evidence-claims-check/SKILL.md | 2 - .../markdown-format-validator/SKILL.md | 2 - .../references/validation-checklist.md | 2 - .../proposal-defaults-onboarding/SKILL.md | 2 - .../agent-attached/proposal-intake/SKILL.md | 2 - .../agent-attached/rfp-response/SKILL.md | 2 - .../SKILL.md | 2 - .../references/output-templates.md | 2 - .../references/qa-rubric.md | 2 - .../references/workflow.md | 2 - .../skills/local/builtins/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../builtins/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../documents/tasks/comments_manage.md | 2 - .../builtins/documents/tasks/compare_diff.md | 2 - .../builtins/documents/tasks/create_edit.md | 2 - .../builtins/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../documents/tasks/images_figures.md | 2 - .../documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../builtins/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../builtins/documents/tasks/toc_workflow.md | 2 - .../builtins/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../skills/local/builtins/pdf/SKILL.md | 2 - .../local/builtins/presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../builtins/spreadsheets/API_QUICK_START.md | 2 - .../local/builtins/spreadsheets/SKILL.md | 2 - .../local/builtins/spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../spreadsheets/routing/google_sheets.md | 2 - .../builtins/spreadsheets/style_guidelines.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../skills/local/system/imagegen/SKILL.md | 2 - .../local/system/imagegen/references/cli.md | 2 - .../imagegen/references/codex-network.md | 2 - .../system/imagegen/references/image-api.md | 2 - .../system/imagegen/references/prompting.md | 2 - .../imagegen/references/sample-prompts.md | 2 - .../skills/local/system/openai-docs/SKILL.md | 2 - .../openai-docs/references/latest-model.md | 2 - .../openai-docs/references/prompting-guide.md | 2 - .../openai-docs/references/upgrade-guide.md | 2 - .../local/system/plugin-creator/SKILL.md | 2 - .../references/installing-and-updating.md | 2 - .../references/plugin-json-spec.md | 2 - .../local/system/skill-creator/SKILL.md | 2 - .../skill-creator/references/openai_yaml.md | 2 - .../local/system/skill-installer/SKILL.md | 2 - .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- agents/tour-operator-config-agent/README.md | 2 - .../agent/code/tests/README.md | 2 - .../tests/app-usage-consistency-source.md | 2 - .../instruction-file-consistency-source.md | 2 - .../agent/code/tests/master-qa-checklist.md | 2 - .../code/tests/pre-launch-qa-checklist.md | 2 - .../qa-checklist-file-schema-validation.md | 2 - .../regression-checklist-master-validation.md | 2 - .../code/tests/schema-validation-tests.md | 2 - .../agent/code/tests/seo-launch-checklist.md | 2 - .../short-description-consistency-source.md | 2 - .../code/tests/skill-routing-snapshot.md | 2 - .../starter-prompt-consistency-source.md | 2 - .../tests/test-plan-file-schema-validation.md | 2 - .../code/tests/test-plan-gravity-forms.md | 2 - .../agent/code/tests/validation-readme.md | 2 - .../agent/configuration/schemas/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/instructions/prompts/README.md | 2 - .../app-usage-consistency-refresh-prompt.md | 2 - .../attached-skill-access-debug-prompt.md | 2 - .../readme-recurring-cleanup-prompt.md | 2 - .../prompts/readme-refresh-prompt.md | 2 - .../prompts/routing-audit-prompt.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - .../skill-package-health-check-prompt.md | 2 - ...lls-routing-and-directory-repair-prompt.md | 2 - ...routing-and-directory-validation-prompt.md | 2 - ...rter-prompts-and-tagline-refresh-prompt.md | 2 - .../00-orchestrator-prompt.md | 2 - .../01-source-audit-prompt.md | 2 - .../02-package-contract-prompt.md | 2 - .../03-skill-entrypoints-prompt.md | 2 - ...-reference-assets-reconciliation-prompt.md | 2 - .../05-local-package-assembly-prompt.md | 2 - .../06-upload-attach-alignment-prompt.md | 2 - .../07-corruption-debug-prompt.md | 2 - .../README.md | 2 - .../derived/package-assembly-checklist.md | 2 - .../derived/package-assembly-worksheet.md | 2 - .../derived/phase-01-audit-summary.md | 2 - ...age-contract-and-missing-files-register.md | 2 - .../derived/phase-03-entrypoint-spec.md | 2 - .../package-assembly-checklist.md | 2 - .../package-assembly-worksheet.md | 2 - ...age-contract-and-missing-files-register.md | 2 - .../phase-02-package-contract.md | 2 - .../phase-03-entrypoint-spec.md | 2 - .../prompts/tour-operator-website/SKILL.md | 2 - .../memory/project-context.md | 2 - .../references/README.md | 2 - .../references/content-model/README.md | 2 - .../core/facetwp-indexing-notes.md | 2 - .../content-model/core/field-usage-rules.md | 2 - .../content-model/core/source-map.md | 2 - .../references/evidence/evidence-model.md | 2 - .../references/evidence/source-links.md | 2 - .../outputs/acceptance-criteria-library.md | 2 - .../outputs/client-safe-language.md | 2 - .../outputs/issue-draft-templates.md | 2 - .../references/outputs/output-contracts.md | 2 - .../references/validation/anti-drift-tests.md | 2 - .../validation/content-model-consistency.md | 2 - .../validation/output-contract-lint.md | 2 - .../validation/prepackage-checklist.md | 2 - .../workflows/acceptance-test-planning.md | 2 - .../references/workflows/audit-workflows.md | 2 - .../block-theme-tour-operator-patterns.md | 2 - .../workflows/content-model-maintenance.md | 2 - .../gravity-forms-tour-operator-workflows.md | 2 - .../workflows/implementation-workflows.md | 2 - .../workflows/issue-handoff-workflow.md | 2 - .../workflows/jsonld-yoast-workflow.md | 2 - .../workflows/live-site-inspection.md | 2 - .../workflows/repository-evidence-review.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../validation-snapshots-refresh-prompt.md | 2 - .../agent/other/attached-memory/README.md | 2 - .../other/attached-memory/project-history.md | 2 - .../other/attached-memory/session-handoff.md | 2 - .../agent/other/attached-memory/todos.md | 2 - .../other/attached-memory/user-preferences.md | 2 - .../agent/other/examples/README.md | 2 - .../examples/example-gravity-forms-plan.md | 2 - .../examples/example-pre-launch-summary.md | 2 - .../other/examples/example-site-discovery.md | 2 - .../example-tour-operator-plugin-audit.md | 2 - .../agent/other/memory/user-preferences.md | 2 - .../agent/references/README.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../agent/references/business-context.md | 2 - .../references/file-naming-conventions.md | 2 - .../references/gravity-forms-standard.md | 2 - ...ur-operator-agent-update-4-step-runbook.md | 2 - .../tour-operator-content-model-standard.md | 2 - .../tour-operator-plugin-stack-standard.md | 2 - .../wordpress-tour-operator-standard.md | 2 - .../agent/references/yoast-seo-standard.md | 2 - .../agent/scripts/README.md | 2 - .../agent/templates/README.md | 2 - .../templates/gravity-forms-plan-template.md | 2 - .../implementation-report-template.md | 2 - .../templates/pre-launch-summary-template.md | 2 - .../templates/site-discovery-template.md | 2 - .../tour-operator-plugin-audit-template.md | 2 - .../templates/validation-report-template.md | 2 - .../templates/yoast-seo-audit-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../SKILL.md | 2 - .../gravity-forms-auditor/SKILL.md | 2 - .../examples/contact-form-audit.md | 2 - .../examples/notification-failure-audit.md | 2 - .../tour-operator-enquiry-form-audit.md | 2 - .../woocommerce-enquiry-form-audit.md | 2 - ...ur-operator-website-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility-audit.md | 2 - .../addons-feeds-and-integrations-audit.md | 2 - .../references/audit-checklists.md | 2 - .../references/audit-methodology.md | 2 - .../references/audit-scope-and-boundaries.md | 2 - .../auditor-configuration-contract.md | 2 - .../configuration-handoff-contract.md | 2 - .../references/gravity-forms-risk-model.md | 2 - .../references/mcp-readonly-capability-map.md | 2 - .../notifications-and-deliverability-audit.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy-audit.md | 2 - .../references/tour-operator-form-audit.md | 2 - .../references/woocommerce-form-audit.md | 2 - .../audit-to-configuration-workflow.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/read-only-mcp-permissions.md | 2 - .../auditor-configuration-handoff.md | 2 - .../templates/client-safe-audit-summary.md | 2 - .../templates/configuration-handoff.md | 2 - .../templates/findings-register.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/readiness-scorecard.md | 2 - .../templates/retest-report.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../gravity-forms-configuration/SKILL.md | 2 - .../examples/bilingual-contact-form.md | 2 - .../examples/business-listing-submission.md | 2 - .../examples/community-story-submission.md | 2 - .../examples/contest-entry.md | 2 - .../examples/customer-satisfaction-survey.md | 2 - .../examples/donation-payment-form.md | 2 - .../examples/event-registration.md | 2 - .../examples/file-upload-request.md | 2 - .../examples/ga4-lead-tracking.md | 2 - .../examples/knowledge-check-quiz.md | 2 - .../examples/membership-registration.md | 2 - .../examples/monthly-form-health-check.md | 2 - .../examples/multi-column-application-form.md | 2 - .../examples/newsletter-signup.md | 2 - .../examples/paid-event-registration.md | 2 - .../examples/public-poll.md | 2 - .../examples/service-quote-calculator.md | 2 - .../examples/styled-newsletter-embed.md | 2 - .../examples/support-request.md | 2 - .../examples/team-permissions-review.md | 2 - .../examples/tour-operator-enquiry.md | 2 - .../examples/utm-lead-capture.md | 2 - .../examples/webhook-lead-routing.md | 2 - .../examples/woocommerce-product-enquiry.md | 2 - .../examples/wordpress-contact-form.md | 2 - .../intake/form-requirements-intake.md | 2 - .../tour-operator-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility.md | 2 - .../references/addons-integrations.md | 2 - .../analytics-conversion-and-attribution.md | 2 - .../auditor-configuration-contract.md | 2 - .../references/auditor-handoff-contract.md | 2 - .../references/change-risk-and-approval.md | 2 - .../conditional-dynamic-calculation-logic.md | 2 - .../consent-localisation-and-microcopy.md | 2 - .../references/core-concepts.md | 2 - .../embedding-and-page-integration.md | 2 - .../references/entry-data-lifecycle.md | 2 - .../environment-and-compatibility.md | 2 - .../feeds-payments-user-registration.md | 2 - .../references/fields-and-form-objects.md | 2 - .../frontend-layout-and-theme-styling.md | 2 - .../references/import-export-and-migration.md | 2 - .../references/mcp-action-recipes.md | 2 - .../references/mcp-and-rest-api-contract.md | 2 - .../notifications-confirmations-merge-tags.md | 2 - .../operations-maintenance-and-inventory.md | 2 - .../references/output-templates.md | 2 - .../payment-donation-event-flows.md | 2 - .../permissions-and-capability-governance.md | 2 - .../post-creation-and-ugc-workflows.md | 2 - .../references/qa-and-test-playbooks.md | 2 - .../references/routing-and-agent-use.md | 2 - .../references/routing-boundaries.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy.md | 2 - .../survey-poll-quiz-assessments.md | 2 - .../references/tour-operator-configuration.md | 2 - .../references/troubleshooting.md | 2 - .../webhooks-and-automation-feeds.md | 2 - .../references/woocommerce-configuration.md | 2 - .../references/wordpress-configuration.md | 2 - .../references/workflows.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/permissions-and-mcp-actions.md | 2 - .../rollout/release-checklist.md | 2 - .../templates/assessment-plan.md | 2 - .../templates/auditor-handoff-intake.md | 2 - .../templates/change-summary.md | 2 - .../templates/configuration-plan.md | 2 - .../templates/consent-copy-review.md | 2 - .../templates/conversion-tracking-plan.md | 2 - .../templates/data-retention-review.md | 2 - .../templates/embed-validation.md | 2 - .../templates/feed-audit.md | 2 - .../templates/form-inventory-audit.md | 2 - .../templates/frontend-style-audit.md | 2 - .../templates/handoff-note.md | 2 - .../templates/layout-regression-check.md | 2 - .../templates/logic-map-review.md | 2 - .../templates/manual-implementation-plan.md | 2 - .../templates/notification-audit.md | 2 - .../templates/payment-flow-review.md | 2 - .../templates/payment-test-report.md | 2 - .../templates/permissions-review.md | 2 - .../templates/post-creation-feed-review.md | 2 - .../templates/preflight-report.md | 2 - .../templates/results-review.md | 2 - .../templates/risk-review.md | 2 - .../templates/test-report.md | 2 - .../templates/tracking-qa-report.md | 2 - .../templates/troubleshooting-runbook.md | 2 - .../templates/ugc-moderation-handoff.md | 2 - .../templates/webhook-feed-review.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../pre-launch-readiness-review/SKILL.md | 2 - .../agent-attached/site-preflight/SKILL.md | 2 - .../tour-operator-website/SKILL.md | 2 - .../memory/project-context.md | 2 - .../references/README.md | 2 - .../references/content-model/README.md | 2 - .../core/facetwp-indexing-notes.md | 2 - .../content-model/core/field-usage-rules.md | 2 - .../content-model/core/source-map.md | 2 - .../references/evidence/evidence-model.md | 2 - .../references/evidence/source-links.md | 2 - .../outputs/acceptance-criteria-library.md | 2 - .../outputs/client-safe-language.md | 2 - .../outputs/issue-draft-templates.md | 2 - .../references/outputs/output-contracts.md | 2 - .../references/validation/anti-drift-tests.md | 2 - .../validation/content-model-consistency.md | 2 - .../validation/output-contract-lint.md | 2 - .../validation/prepackage-checklist.md | 2 - .../workflows/acceptance-test-planning.md | 2 - .../references/workflows/audit-workflows.md | 2 - .../block-theme-tour-operator-patterns.md | 2 - .../workflows/content-model-maintenance.md | 2 - .../gravity-forms-tour-operator-workflows.md | 2 - .../workflows/implementation-workflows.md | 2 - .../workflows/issue-handoff-workflow.md | 2 - .../workflows/jsonld-yoast-workflow.md | 2 - .../workflows/live-site-inspection.md | 2 - .../workflows/repository-evidence-review.md | 2 - .../wordpress-accessibility-checker/SKILL.md | 2 - .../examples/fix-mode-example.md | 2 - .../examples/normalisation-example.md | 2 - .../examples/report-mode-example.md | 2 - .../memory/README.md | 2 - .../references/issue-handling.md | 2 - .../references/manual-qa-checklist.md | 2 - .../references/mcp-access-patterns.md | 2 - .../references/remediation-boundaries.md | 2 - .../templates/audit-report.md | 2 - .../templates/client-summary.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/fix-log.md | 2 - .../templates/fix-plan.md | 2 - .../tests/README.md | 2 - .../agent-attached/yoast-auditor/SKILL.md | 2 - .../yoast-auditor/docs/changelog.md | 2 - .../yoast-auditor/docs/evidence-policy.md | 2 - .../yoast-auditor/docs/maintenance-guide.md | 2 - .../yoast-auditor/docs/usage-guide.md | 2 - .../yoast-auditor/intake/audit-intake.md | 2 - .../intake/developer-handoff-intake.md | 2 - .../intake/migration-audit-intake.md | 2 - .../intake/site-evidence-intake.md | 2 - .../intake/woocommerce-audit-intake.md | 2 - .../profiles/ecommerce-catalogue-audit.md | 2 - .../profiles/ecommerce-transactional-audit.md | 2 - .../profiles/local-business-audit.md | 2 - .../profiles/migration-rebuild-audit.md | 2 - .../profiles/multilingual-audit.md | 2 - .../profiles/publisher-blog-audit.md | 2 - .../profiles/standard-business-audit.md | 2 - .../references/audit-scope-router.md | 2 - .../references/developer-handoff-reference.md | 2 - .../yoast-auditor/references/evidence-map.md | 2 - .../references/finding-rules-library.md | 2 - .../references/migration-launch-reference.md | 2 - .../product-capability-boundaries.md | 2 - .../references/schema-audit-reference.md | 2 - .../references/source-register.md | 2 - .../references/woocommerce-audit-reference.md | 2 - .../references/yoast-output-reference.md | 2 - .../templates/client-audit-report.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/evidence-gap-report.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/launch-qa-report.md | 2 - .../templates/migration-readiness-report.md | 2 - .../templates/page-metadata-review.md | 2 - .../templates/schema-qa-report.md | 2 - .../templates/taxonomy-archive-review.md | 2 - .../templates/woocommerce-seo-audit-report.md | 2 - .../tests/audit-output-quality-tests.md | 2 - .../tests/fast-audit-mode-tests.md | 2 - .../tests/migration-launch-scenario-tests.md | 2 - .../tests/routing-scenario-tests.md | 2 - .../tests/schema-scenario-tests.md | 2 - .../tests/template-contract-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../yoast-configuration/SKILL.md | 2 - .../yoast-configuration/docs/changelog.md | 2 - .../docs/current-verification-playbook.md | 2 - .../docs/evidence-policy.md | 2 - .../docs/maintenance-guide.md | 2 - .../docs/reference-refresh-protocol.md | 2 - .../docs/research-workflow.md | 2 - .../yoast-configuration/docs/usage-guide.md | 2 - .../memory/example-agency-defaults.md | 2 - .../memory/example-client-site-profile.md | 2 - .../examples/migration-audit-example.md | 2 - .../examples/schema-customisation-example.md | 2 - .../standard-business-site-example.md | 2 - .../templates/client-summary-template.md | 2 - .../templates/developer-handoff-template.md | 2 - .../examples/templates/qa-report-template.md | 2 - .../examples/woocommerce-store-example.md | 2 - .../intake/client-site-intake.md | 2 - .../intake/migration-intake.md | 2 - .../intake/woocommerce-intake.md | 2 - .../intake/wordpress-site-intake.md | 2 - .../memory/defaults/agency-defaults.md | 2 - .../memory/defaults/schema-defaults.md | 2 - .../defaults/standard-yoast-defaults.md | 2 - .../memory/defaults/woocommerce-defaults.md | 2 - .../profiles/business-website.md | 2 - .../profiles/ecommerce-catalogue.md | 2 - .../profiles/ecommerce-transactional.md | 2 - .../profiles/local-business.md | 2 - .../profiles/migration-rebuild.md | 2 - .../profiles/multilingual-site.md | 2 - .../profiles/publisher-blog.md | 2 - .../references/access-level-workflow.md | 2 - .../references/agency-defaults-drift-model.md | 2 - .../references/ai-assisted-seo-workflow.md | 2 - .../references/ai-metadata-review-model.md | 2 - .../references/approval-queue-workflow.md | 2 - .../references/audit-triage-model.md | 2 - .../references/bulk-metadata-governance.md | 2 - .../client-communication-guardrails.md | 2 - .../references/configuration-playbooks.md | 2 - .../references/configuration-reference.md | 2 - .../conflict-resolution-playbook.md | 2 - .../content-structure-taxonomy-playbook.md | 2 - .../references/decision-register-model.md | 2 - .../references/developer-api-reference.md | 2 - .../references/evidence-state-model.md | 2 - .../references/feature-behaviour-reference.md | 2 - .../references/file-routing-index.md | 2 - .../references/future-skill-architecture.md | 2 - .../references/locale-metadata-governance.md | 2 - .../multilingual-hreflang-playbook.md | 2 - .../periodic-health-review-playbook.md | 2 - .../plugin-update-regression-playbook.md | 2 - .../references/portfolio-audit-playbook.md | 2 - .../references/product-capability-matrix.md | 2 - .../references/qa-checklists.md | 2 - .../references/redirect-map-decision-model.md | 2 - .../redirect-migration-governance.md | 2 - .../references/related-skills-routing.md | 2 - .../references/remediation-backlog-model.md | 2 - .../references/rendered-output-qa-playbook.md | 2 - .../references/research-pack-output-spec.md | 2 - .../references/schema-reference.md | 2 - .../settings-export-review-playbook.md | 2 - .../references/source-register.md | 2 - .../references/state-comparison-playbook.md | 2 - .../taxonomy-indexation-decision-model.md | 2 - .../references/woocommerce-seo-reference.md | 2 - .../references/yoast-health-score-model.md | 2 - .../rollout/implementation-plan.md | 2 - .../rollout/team-adoption-notes.md | 2 - .../rollout/validation-plan.md | 2 - .../rollout/versioning-policy.md | 2 - .../templates/ai-metadata-approval-pack.md | 2 - .../templates/client-safe-summary.md | 2 - .../content-structure-remediation-plan.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/launch-qa-checklist.md | 2 - .../templates/metadata-bulk-edit-plan.md | 2 - .../migration-launch-seo-control-plan.md | 2 - .../templates/multilingual-seo-qa-report.md | 2 - .../templates/redirect-map-review.md | 2 - .../templates/rendered-output-qa-report.md | 2 - .../templates/settings-export-review.md | 2 - .../templates/source-register-row-template.md | 2 - .../taxonomy-indexation-decision-pack.md | 2 - .../translated-metadata-approval-pack.md | 2 - .../templates/wordpress-admin-change-plan.md | 2 - .../templates/yoast-acceptance-criteria.md | 2 - .../yoast-ai-plus-positioning-note.md | 2 - .../templates/yoast-approval-queue.md | 2 - .../templates/yoast-audit-report.md | 2 - .../templates/yoast-configuration-report.md | 2 - .../templates/yoast-decision-log.md | 2 - .../templates/yoast-defaults-drift-report.md | 2 - .../templates/yoast-health-summary.md | 2 - .../yoast-portfolio-audit-summary.md | 2 - .../templates/yoast-regression-test-report.md | 2 - .../templates/yoast-remediation-backlog.md | 2 - .../templates/yoast-research-pack.md | 2 - .../templates/yoast-retainer-review-note.md | 2 - .../yoast-state-comparison-report.md | 2 - .../templates/yoast-troubleshooting-note.md | 2 - .../templates/yoast-woocommerce-report.md | 2 - .../access-remediation-scenario-tests.md | 2 - .../tests/ai-assisted-seo-scenario-tests.md | 2 - .../tests/artefact-review-scenario-tests.md | 2 - .../tests/audit-triage-scenario-tests.md | 2 - ...bulk-metadata-governance-scenario-tests.md | 2 - .../comparison-regression-scenario-tests.md | 2 - .../tests/configuration-scenario-tests.md | 2 - .../tests/content-taxonomy-scenario-tests.md | 2 - .../tests/decision-conflict-scenario-tests.md | 2 - .../tests/developer-api-reference-tests.md | 2 - .../tests/health-review-scenario-tests.md | 2 - .../multilingual-hreflang-scenario-tests.md | 2 - .../portfolio-defaults-scenario-tests.md | 2 - .../redirect-migration-scenario-tests.md | 2 - .../tests/reference-data-validation.md | 2 - .../related-skills-routing-scenario-tests.md | 2 - .../tests/research-pack-scenario-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../skills/local/Presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../Presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../local/Spreadsheets/API_QUICK_START.md | 2 - .../skills/local/Spreadsheets/SKILL.md | 2 - .../skills/local/Spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../Spreadsheets/routing/google_sheets.md | 2 - .../local/Spreadsheets/style_guidelines.md | 2 - .../skills/local/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../skills/local/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../local/documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../local/documents/tasks/comments_manage.md | 2 - .../local/documents/tasks/compare_diff.md | 2 - .../local/documents/tasks/create_edit.md | 2 - .../local/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../local/documents/tasks/images_figures.md | 2 - .../local/documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../local/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../local/documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../local/documents/tasks/toc_workflow.md | 2 - .../local/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../local/github-gh-address-comments/SKILL.md | 2 - .../skills/local/github-gh-fix-ci/SKILL.md | 2 - .../skills/local/github-github/SKILL.md | 2 - .../skills/local/github-yeet/SKILL.md | 2 - .../local/google-drive-google-docs/SKILL.md | 2 - .../reference-citations-and-hyperlinks.md | 2 - .../reference-connector-runtime-and-safety.md | 2 - .../reference-direct-request-composition.md | 2 - .../reference-figures-and-image-insertion.md | 2 - .../references/reference-foreground-guard.md | 2 - .../reference-headings-and-question-format.md | 2 - .../reference-import-docx-to-native-docs.md | 2 - .../reference-meeting-notes-direct.md | 2 - .../reference-native-create-direct.md | 2 - .../reference-pdf-export-visual-qa.md | 2 - ...ference-request-shapes-and-write-safety.md | 2 - .../reference-response-and-list-format.md | 2 - ...nce-section-completeness-and-final-pass.md | 2 - ...ference-smart-chips-and-building-blocks.md | 2 - .../reference-table-formatting-deep-dive.md | 2 - .../SKILL.md | 2 - .../local/google-drive-google-drive/SKILL.md | 2 - .../slides/chart-refresh-workflows.md | 2 - .../slides/deck-scope-verification.md | 2 - .../slides/sheets-chart-replacement.md | 2 - .../references/slides/visual-change-loop.md | 2 - .../local/google-drive-google-sheets/SKILL.md | 2 - .../reference-batch-update-recipes.md | 2 - .../references/reference-chart-recipes.md | 2 - .../references/reference-edit-workflow.md | 2 - .../references/reference-formula-patterns.md | 2 - ...nce-import-spreadsheet-to-native-sheets.md | 2 - .../reference-live-read-search-safety.md | 2 - .../references/style-profiles.md | 2 - .../local/google-drive-google-slides/SKILL.md | 2 - .../reference-batch-update-recipes.md | 2 - .../references/reference-chart-workflows.md | 2 - .../reference-connector-runtime-and-safety.md | 2 - .../reference-google-slides-mcp-discovery.md | 2 - .../reference-import-presentation.md | 2 - .../reference-new-deck-and-final-pass.md | 2 - ...erence-read-before-write-and-deck-scope.md | 2 - ...ference-request-shapes-and-write-safety.md | 2 - .../reference-slide-archetype-mapping.md | 2 - ...nce-slide-planning-and-layout-selection.md | 2 - .../reference-target-presentation-guard.md | 2 - .../reference-template-migration.md | 2 - ...e-template-reference-deck-copy-workflow.md | 2 - ...reference-thumbnail-visual-verification.md | 2 - .../references/reference-visual-iteration.md | 2 - .../skills/local/imagegen/SKILL.md | 2 - .../skills/local/imagegen/references/cli.md | 2 - .../imagegen/references/codex-network.md | 2 - .../local/imagegen/references/image-api.md | 2 - .../local/imagegen/references/prompting.md | 2 - .../imagegen/references/sample-prompts.md | 2 - .../skills/local/linear-linear/SKILL.md | 2 - .../skills/local/openai-docs/SKILL.md | 2 - .../openai-docs/references/latest-model.md | 2 - .../openai-docs/references/prompting-guide.md | 2 - .../openai-docs/references/upgrade-guide.md | 2 - .../skills/local/pdf/SKILL.md | 2 - .../skills/local/plugin-creator/SKILL.md | 2 - .../references/installing-and-updating.md | 2 - .../references/plugin-json-spec.md | 2 - .../skills/local/skill-creator/SKILL.md | 2 - .../skill-creator/references/openai_yaml.md | 2 - .../skills/local/skill-installer/SKILL.md | 2 - .../README.md | 2 - .../agent/configuration/memory/README.md | 2 - .../agent/configuration/memory/todos.md | 2 - .../configuration/memory/user-preferences.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../other/agent_files/business-context.md | 2 - .../agent/other/examples/README.md | 2 - .../other/examples/review-output-example.md | 2 - .../agent/other/tests/README.md | 2 - .../agent-validation-regression-checklist.md | 2 - .../other/tests/schema-validation-tests.md | 2 - .../agent/references/docs/examples/README.md | 2 - .../component-and-email-examples.md | 2 - .../website-and-chatbot-intake-examples.md | 2 - .../utility-and-feedback-page-examples.md | 2 - .../examples/pages/website-page-examples.md | 2 - .../examples/policies/policy-page-examples.md | 2 - .../agent/references/docs/intake/README.md | 2 - .../intake/agent-context-routing-template.md | 2 - .../docs/intake/approval-gate-checklist.md | 2 - .../docs/intake/blocking-gaps-checklist.md | 2 - .../docs/intake/claim-register-template.md | 2 - .../docs/intake/exclusions-register.md | 2 - .../docs/intake/handoff-output-template.md | 2 - .../docs/intake/intake-review-table.md | 2 - .../docs/intake/memory-promotion-checklist.md | 2 - .../docs/intake/project-memory-summary.md | 2 - .../docs/intake/questionnaire-source-map.md | 2 - .../docs/intake/risk-and-review-checklist.md | 2 - .../docs/intake/source-approval-register.md | 2 - .../memory/content-workflow-memory-guide.md | 2 - .../memory/conversion-goals-memory-guide.md | 2 - .../docs/memory/memory-example-contents.md | 2 - .../memory/voice-and-tone-memory-guide.md | 2 - .../references/docs/operating-guidance.md | 2 - .../example-contexts-index.md | 2 - .../lightspeedwp-agency-example.md | 2 - .../lsx-design-system-example.md | 2 - .../preview-test-qa-checklist.md | 2 - .../repeatable-preview-test-prompts.md | 2 - .../touroperator-solutions-example.md | 2 - .../docs/templates/ai-governance-template.md | 2 - .../docs/templates/claim-register-template.md | 2 - .../templates/content/about-page-template.md | 2 - .../admin-form-email-notification-template.md | 2 - .../content/claim-register-template.md | 2 - .../conversion-goals-memory-template.md | 2 - .../content/form-and-email-template.md | 2 - .../full-website-content-plan-template.md | 2 - .../templates/content/mega-menu-template.md | 2 - .../templates/content/newsletter-template.md | 2 - .../content/section-content-template.md | 2 - .../content/service-page-template.md | 2 - .../content/standard-page-template.md | 2 - .../user-form-email-notification-template.md | 2 - .../content/voice-and-tone-memory-template.md | 2 - .../intake/conversion-goal-intake-template.md | 2 - .../templates/intake/faq-intake-template.md | 2 - .../templates/intake/stats-intake-template.md | 2 - .../universal-page-content-intake-template.md | 2 - .../intake/voice-and-tone-intake-template.md | 2 - .../docs/templates/launch-qa-template.md | 2 - .../templates/markdown-output-format-guide.md | 2 - .../docs/templates/page-draft-template.md | 2 - .../pages/404-error-page-template.md | 2 - .../templates/pages/about-careers-template.md | 2 - .../templates/pages/about-culture-template.md | 2 - .../templates/pages/about-history-template.md | 2 - .../templates/pages/about-process-template.md | 2 - .../templates/pages/about-team-template.md | 2 - .../docs/templates/pages/about-template.md | 2 - .../pages/ai-chatbot-intake-page-template.md | 2 - .../client-feedback-page-form-template.md | 2 - .../templates/pages/contact-page-template.md | 2 - .../templates/pages/faqs-landing-template.md | 2 - .../pages/getting-started-page-template.md | 2 - .../docs/templates/pages/homepage-template.md | 2 - .../pages/insights-landing-template.md | 2 - .../pages/our-guarantees-template.md | 2 - .../templates/pages/pricing-page-template.md | 2 - .../pages/products-landing-template.md | 2 - .../pages/resources-page-template.md | 2 - .../pages/search-results-template.md | 2 - .../pages/services-landing-template.md | 2 - .../pages/shared-faq-planning-template.md | 2 - .../pages/shared-stats-proof-template.md | 2 - .../pages/single-blog-post-template.md | 2 - .../pages/single-case-study-template.md | 2 - .../pages/single-product-offering-template.md | 2 - .../pages/single-service-page-template.md | 2 - .../pages/single-team-profile-template.md | 2 - .../pages/single-testimonial-template.md | 2 - .../templates/pages/support-page-template.md | 2 - .../pages/testimonials-landing-template.md | 2 - .../pages/website-intake-form-template.md | 2 - .../templates/pages/work-landing-template.md | 2 - .../policies/ai-governance-policy-template.md | 2 - .../policies/cookie-policy-template.md | 2 - .../policies/corrections-policy-template.md | 2 - .../policies/diversity-policy-template.md | 2 - .../policies/ethics-policy-template.md | 2 - .../policies/feedback-policy-template.md | 2 - .../policies/ownership-info-template.md | 2 - .../policies-and-principles-template.md | 2 - .../policies/privacy-policy-template.md | 2 - .../publishing-principles-template.md | 2 - .../policies/staffing-report-template.md | 2 - .../policies/terms-and-conditions-template.md | 2 - .../docs/templates/website-review-template.md | 2 - .../references/docs/website-content-scope.md | 2 - .../agent/references/references/CONNECTORS.md | 2 - .../agent/references/references/README.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/chatgpt-presentation-spec.md | 2 - .../file-usage-and-routing-guide.md | 2 - .../references/naming-conventions.md | 2 - .../references/skill-routing-guide.md | 2 - .../references/validation-standards.md | 2 - .../agent/scripts/README.md | 2 - .../agent/templates/README.md | 2 - .../agent/templates/prompts/README.md | 2 - ...it-folder-purpose-and-boundaries-prompt.md | 2 - ...instructions-and-files-alignment-prompt.md | 2 - ...ntenance-priority-and-sequencing-prompt.md | 2 - ...reference-and-validator-coverage-prompt.md | 2 - ...udit-reference-files-consistency-prompt.md | 2 - .../audit-skill-reference-drift-prompt.md | 2 - .../audit-validator-and-test-drift-prompt.md | 2 - .../debug-preview-run-failure-prompt.md | 2 - ...ile-readmes-and-folder-inventory-prompt.md | 2 - ...air-skills-routing-and-directory-prompt.md | 2 - .../update-agent-readmes-recurring-prompt.md | 2 - ...ate-skills-routing-and-directory-prompt.md | 2 - ...tion-layer-consistency-follow-up-prompt.md | 2 - .../templates/questionnaires/MANIFEST.md | 2 - .../agent/templates/questionnaires/README.md | 2 - .../basic-website-package-questionnaire.md | 2 - ...t-collection-fillable-pdf-questionnaire.md | 2 - .../content-collection-questionnaire.md | 2 - .../design-briefing-questionnaire.md | 2 - .../questionnaires/ecommerce-briefing-form.md | 2 - .../standard-website-package-questionnaire.md | 2 - .../tone-of-voice-questionnaire.md | 2 - .../tour-operator-blog-questionnaire.md | 2 - ...ur-operator-website-planning-checklists.md | 2 - .../website-briefing-questionnaire.md | 2 - ...ebsite-content-collection-questionnaire.md | 2 - .../website-design-questionnaire.md | 2 - .../agent/templates/review-output-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../manifests/validation-summary.md | 2 - .../ai-chatbot-planner/SKILL.md | 2 - .../ai-engine-implementation-notes.md | 2 - .../references/chatbot-brief-template.md | 2 - .../references/launch-gates.md | 2 - .../references/privacy-log-retention.md | 2 - .../references/test-scripts.md | 2 - .../ai-governance-documenter/SKILL.md | 2 - .../ai-governance-documentor/SKILL.md | 2 - .../references/governance-guide-template.md | 2 - .../references/high-risk-interactive-mode.md | 2 - .../references/minimum-client-inputs.md | 2 - .../references/prompt-templates.md | 2 - .../references/role-map.md | 2 - .../ai-readiness-assessor/SKILL.md | 2 - .../references/red-flags.md | 2 - .../references/report-template.md | 2 - .../references/scoring-model.md | 2 - .../references/tool-checks.md | 2 - .../claim-register-builder/SKILL.md | 2 - .../references/claim-register-template.md | 2 - .../references/claim-types.md | 2 - .../SKILL.md | 2 - .../references/collection-output-template.md | 2 - .../references/scope-patterns.md | 2 - .../content-collection-planner/SKILL.md | 2 - .../references/client-email-template.md | 2 - .../references/content-gap-report-template.md | 2 - .../references/folder-structure.md | 2 - .../generic-website-content-checklist.md | 2 - .../references/sector-addons.md | 2 - .../conversion-goal-strategist/SKILL.md | 2 - .../conversion-goal-intake-checklist.md | 2 - .../references/conversion-goal-options.md | 2 - .../conversion-goal-output-template.md | 2 - .../conversion-goal-scenario-defaults.md | 2 - .../faq-intake-claim-mapper/SKILL.md | 2 - .../references/faq-claim-actions.md | 2 - .../references/faq-intake-template.md | 2 - .../SKILL.md | 2 - .../references/form-field-patterns.md | 2 - .../references/form-intake-options.md | 2 - .../references/form-output-template.md | 2 - .../references/form-scenario-defaults.md | 2 - .../SKILL.md | 2 - .../references/client-project-wizard.md | 2 - .../lightspeed-service-positioning.md | 2 - .../references/output-standards.md | 2 - .../references/red-flags.md | 2 - .../references/skill-routing-rules.md | 2 - .../lightspeed-ai-readiness-router/SKILL.md | 2 - .../references/client-project-pack-outputs.md | 2 - .../references/proposal-line-items.md | 2 - .../references/workflow-router.md | 2 - .../lightspeed-ai-readiness/SKILL.md | 2 - .../assets/chatbot-planning-wizard.md | 2 - .../assets/content-collection-wizard.md | 2 - .../assets/governance-discovery-wizard.md | 2 - .../assets/readiness-assessment-wizard.md | 2 - .../universal-client-project-kickoff.md | 2 - .../references/ai-chatbot-planner.md | 2 - .../references/ai-governance-documentor.md | 2 - .../references/ai-readiness-assessor.md | 2 - .../references/client-output-standards.md | 2 - .../references/content-collection-planner.md | 2 - .../references/lightspeed-style-guide.md | 2 - .../references/router-and-project-pack.md | 2 - .../references/source-frameworks.md | 2 - .../SKILL.md | 2 - .../assets/approved-wording-template.md | 2 - .../assets/claim-register-template.md | 2 - .../assets/evidence-needed-template.md | 2 - .../assets/page-location-map-template.md | 2 - .../assets/publication-summary-template.md | 2 - .../assets/rejected-wording-template.md | 2 - .../assets/review-owner-template.md | 2 - .../references/approved-wording-rules.md | 2 - .../references/chatbot-claim-rules.md | 2 - .../references/claim-audit-workflow.md | 2 - .../references/claim-types.md | 2 - .../references/classification-rules.md | 2 - .../references/evidence-standards.md | 2 - .../references/report-template.md | 2 - .../SKILL.md | 2 - .../chatbot-safe-faq-register-template.md | 2 - .../assets/company-faq-page-template.md | 2 - .../assets/duplicate-faq-report-template.md | 2 - .../assets/escalation-questions-template.md | 2 - .../assets/page-level-faq-map-template.md | 2 - .../schema-ready-faq-answers-template.md | 2 - .../assets/unsupported-questions-template.md | 2 - .../references/chatbot-safe-source-rules.md | 2 - .../escalation-and-unsupported-rules.md | 2 - .../references/faq-curation-workflow.md | 2 - .../references/faq-taxonomy.md | 2 - .../references/report-templates.md | 2 - .../references/schema-ready-faq-rules.md | 2 - .../lightspeed-launch-qa-planner/SKILL.md | 2 - .../assets/block-plugin-qa-matrix-template.md | 2 - .../assets/go-no-go-summary-template.md | 2 - .../assets/launch-gate-checklist-template.md | 2 - .../assets/launch-qa-plan-template.md | 2 - .../page-template-qa-matrix-template.md | 2 - .../assets/pattern-qa-matrix-template.md | 2 - .../assets/qa-workstream-table-template.md | 2 - .../references/accessibility-responsive-qa.md | 2 - .../references/block-plugin-qa.md | 2 - .../references/block-theme-qa.md | 2 - .../references/conversion-and-tracking-qa.md | 2 - .../references/figma-to-wordpress-qa.md | 2 - .../references/launch-gate-model.md | 2 - .../references/launch-qa-planning-workflow.md | 2 - .../references/pattern-and-template-qa.md | 2 - .../references/specialist-skill-routing.md | 2 - .../lightspeed-policy-page-generator/SKILL.md | 2 - .../accessibility-statement-template.md | 2 - .../assets/ai-governance-page-template.md | 2 - .../assets/chatbot-disclosure-template.md | 2 - .../assets/cookie-policy-brief-template.md | 2 - .../data-log-retention-decision-template.md | 2 - .../assets/privacy-policy-brief-template.md | 2 - .../references/accessibility-statement.md | 2 - .../references/ai-governance-page.md | 2 - .../references/chatbot-disclosure.md | 2 - .../references/cookie-policy-brief.md | 2 - .../references/data-log-retention.md | 2 - .../references/policy-workflow.md | 2 - .../references/privacy-policy-brief.md | 2 - .../references/review-and-approval.md | 2 - .../lightspeed-project-intake-router/SKILL.md | 2 - .../assets/kickoff-pack-template.md | 2 - .../assets/missing-inputs-template.md | 2 - .../assets/prompt-starters-template.md | 2 - .../assets/source-inventory-template.md | 2 - .../assets/workflow-route-template.md | 2 - .../references/approval-gates.md | 2 - .../references/clarifying-questions.md | 2 - .../references/intake-workflow.md | 2 - .../references/project-type-classification.md | 2 - .../references/source-inventory-rules.md | 2 - .../references/specialist-routing.md | 2 - .../references/test-prompts.md | 2 - .../SKILL.md | 2 - .../assets/case-study-template.md | 2 - .../assets/content-pack-readme-template.md | 2 - .../assets/faq-page-template.md | 2 - .../assets/page-brief-template.md | 2 - .../assets/service-page-template.md | 2 - .../assets/solution-page-template.md | 2 - .../references/chatbot-safe-content-rules.md | 2 - .../references/claim-handling-rules.md | 2 - .../references/content-generation-workflow.md | 2 - .../references/lightspeed-style-guide.md | 2 - .../references/page-output-templates.md | 2 - .../references/review-status-labels.md | 2 - .../references/seo-and-schema-rules.md | 2 - .../references/source-inputs.md | 2 - .../SKILL.md | 2 - .../assets/case-study-template.md | 2 - .../assets/content-pack-readme-template.md | 2 - .../assets/faq-page-template.md | 2 - .../assets/page-brief-template.md | 2 - .../assets/service-page-template.md | 2 - .../assets/solution-page-template.md | 2 - .../references/chatbot-safe-content-rules.md | 2 - .../references/claim-handling-rules.md | 2 - .../references/content-generation-workflow.md | 2 - .../references/lightspeed-style-guide.md | 2 - .../references/page-output-templates.md | 2 - .../references/review-status-labels.md | 2 - .../references/seo-and-schema-rules.md | 2 - .../references/source-inputs.md | 2 - .../markdown-formatting-validator/SKILL.md | 2 - .../assets/output-type-template-map.md | 2 - .../references/formatting-rules.md | 2 - .../references/validation-checklist.md | 2 - .../newsletter-content-planner/SKILL.md | 2 - .../references/newsletter-options.md | 2 - .../newsletter-scenario-defaults.md | 2 - .../references/newsletter-template.md | 2 - .../references/newsletter-types.md | 2 - .../policies-creation-skill/SKILL.md | 2 - .../references/policy-page-map.md | 2 - .../stats-evidence-intake/SKILL.md | 2 - .../references/site-type-question-guide.md | 2 - .../references/stats-intake-template.md | 2 - .../universal-page-content-intake/SKILL.md | 2 - .../references/max-intake-fields.md | 2 - .../references/routing-handoff-rules.md | 2 - .../voice-and-tone-strategist/SKILL.md | 2 - .../references/voice-tone-intake-checklist.md | 2 - .../references/voice-tone-options.md | 2 - .../references/voice-tone-output-template.md | 2 - .../voice-tone-scenario-defaults.md | 2 - .../SKILL.md | 2 - .../website-pages-builder/SKILL.md | 2 - .../references/page-type-map.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- .../website-scope-estimator-agent/README.md | 2 - .../agent/configuration/CONNECTORS.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../other/memory/active-project-brief.md | 2 - ...pact-page-add-on-provisional-2026-05-13.md | 2 - ...a-wordpress-rebuild-evidence-2026-05-11.md | 2 - ...ordpress-rebuild-provisional-2026-05-12.md | 2 - .../agent/other/tests/example-01.md | 2 - .../agent/other/tests/example-03.md | 2 - .../agent/other/tests/example-04.md | 2 - .../agent/other/tests/example-05.md | 2 - .../agent/other/tests/test-plan.md | 2 - .../agent/references/business-context.md | 2 - .../commercial-rules/addon-rules.md | 2 - .../commercial-rules/approval-rules.md | 2 - .../commercial-rules/custom-scope-triggers.md | 2 - .../commercial-rules/package-thresholds.md | 2 - .../commercial-rules/pricing-rules.md | 2 - .../agent/references/docs/README.md | 2 - .../docs/output-template-library.md | 2 - .../example-contexts-index.md | 2 - .../lightspeedwp-agency-example.md | 2 - .../lsx-design-system-example.md | 2 - .../preview-qa-checklist.md | 2 - .../preview-test-prompts.md | 2 - .../touroperator-solutions-example.md | 2 - .../estimator-operating-rules.md | 2 - .../gpt-knowledge/proposal-operating-rules.md | 2 - .../agent/references/package-addons/README.md | 2 - .../accessibility-review-addon.md | 2 - .../references/package-addons/addon-index.md | 2 - .../ai-chatbot-planning-addon.md | 2 - .../ai-readiness-foundation-addon.md | 2 - .../ai-search-and-structured-data-addon.md | 2 - .../analytics-foundation-addon.md | 2 - .../care-plan-retainer-addon.md | 2 - .../package-addons/content-migration-addon.md | 2 - .../copywriting-support-addon.md | 2 - .../governance-workshop-addon.md | 2 - .../multilingual-expansion-addon.md | 2 - .../performance-optimisation-addon.md | 2 - .../package-addons/seo-foundation-addon.md | 2 - .../agent/references/packages/README.md | 2 - .../references/packages/assessment-values.md | 2 - .../packages/custom-website-solution.md | 2 - .../references/packages/package-index.md | 2 - .../packages/publisher-website-package.md | 2 - .../packages/tour-operator-website-package.md | 2 - .../packages/woocommerce-website-package.md | 2 - .../packages/wordpress-foundations-package.md | 2 - .../agent/references/references/README.md | 2 - .../skill-directory/skill-routing-guide.md | 2 - .../templates/estimate-output-template.md | 2 - .../templates/evidence-library-template.md | 2 - .../templates/internal-approval-checklist.md | 2 - .../internal-vs-client-facing-rules.md | 2 - .../templates/package-cover-sheet-template.md | 2 - .../templates/proposal-output-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../manifests/skills.md | 2 - .../estimator-onboarding/SKILL.md | 2 - .../agent-attached/quote-readiness/SKILL.md | 2 - .../website-evidence-pass/SKILL.md | 2 - .../website-intake-workflow/SKILL.md | 2 - .../website-package-routing/SKILL.md | 2 - .../skills/local/documents/SKILL.md | 2 - .../examples/end_to_end_smoke_test.md | 2 - .../skills/local/documents/ooxml/comments.md | 2 - .../documents/ooxml/hyperlinks_and_fields.md | 2 - .../documents/ooxml/rels_and_content_types.md | 2 - .../local/documents/ooxml/tracked_changes.md | 2 - .../documents/references/design_presets.md | 2 - .../documents/references/header_templates.md | 2 - .../documents/tasks/accessibility_a11y.md | 2 - .../documents/tasks/captions_crossrefs.md | 2 - .../documents/tasks/clean_tracked_changes.md | 2 - .../local/documents/tasks/comments_manage.md | 2 - .../local/documents/tasks/compare_diff.md | 2 - .../local/documents/tasks/create_edit.md | 2 - .../local/documents/tasks/fields_update.md | 2 - .../documents/tasks/fixtures_edge_cases.md | 2 - .../documents/tasks/footnotes_endnotes.md | 2 - .../documents/tasks/forms_content_controls.md | 2 - .../documents/tasks/headings_numbering.md | 2 - .../local/documents/tasks/images_figures.md | 2 - .../local/documents/tasks/multi_doc_merge.md | 2 - .../tasks/navigation_internal_links.md | 2 - .../documents/tasks/privacy_scrub_metadata.md | 2 - .../tasks/protection_restrict_editing.md | 2 - .../local/documents/tasks/read_review.md | 2 - .../tasks/redaction_anonymization.md | 2 - .../local/documents/tasks/sections_layout.md | 2 - .../documents/tasks/style_lint_normalize.md | 2 - .../documents/tasks/tables_spreadsheets.md | 2 - .../documents/tasks/templates_style_packs.md | 2 - .../local/documents/tasks/toc_workflow.md | 2 - .../local/documents/tasks/verify_render.md | 2 - .../documents/tasks/watermarks_background.md | 2 - .../troubleshooting/libreoffice_headless.md | 2 - .../troubleshooting/run_splitting.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../skills/local/imagegen/SKILL.md | 2 - .../skills/local/imagegen/references/cli.md | 2 - .../imagegen/references/codex-network.md | 2 - .../local/imagegen/references/image-api.md | 2 - .../local/imagegen/references/prompting.md | 2 - .../imagegen/references/sample-prompts.md | 2 - .../skills/local/openai-docs/SKILL.md | 2 - .../openai-docs/references/latest-model.md | 2 - .../openai-docs/references/prompting-guide.md | 2 - .../openai-docs/references/upgrade-guide.md | 2 - .../skills/local/pdf/SKILL.md | 2 - .../skills/local/plugin-creator/SKILL.md | 2 - .../references/installing-and-updating.md | 2 - .../references/plugin-json-spec.md | 2 - .../skills/local/presentations/SKILL.md | 2 - .../artifact_tool/API_QUICK_START.md | 2 - .../artifact_tool/api/API_DOCS.md | 2 - .../api/references/auto-layout.spec.md | 2 - .../api/references/charts.spec.md | 2 - .../artifact_tool/api/references/comments.md | 2 - .../api/references/connectors.md | 2 - .../api/references/cookbook/imported-deck.md | 2 - .../api/references/cookbook/layout.md | 2 - .../artifact_tool/api/references/fill.spec.md | 2 - .../artifact_tool/api/references/help.md | 2 - .../api/references/images.spec.md | 2 - .../artifact_tool/api/references/inspect.md | 2 - .../artifact_tool/api/references/jsx.md | 2 - .../api/references/layout.spec.md | 2 - .../api/references/master.spec.md | 2 - .../api/references/presentation.spec.md | 2 - .../api/references/rich-text.spec.md | 2 - .../api/references/shapes.spec.md | 2 - .../api/references/slide.spec.md | 2 - .../api/references/speaker-notes.spec.md | 2 - .../api/references/styles.spec.md | 2 - .../api/references/tables.spec.md | 2 - .../api/references/theme.spec.md | 2 - .../artifact_tool/api/references/tokens.md | 2 - .../builtin_templates_support/README.md | 2 - .../codex-grid-layout-library/ARTIFACT.md | 2 - .../codex-grid-layout-library/presentation.md | 2 - .../prompts/common.md | 2 - .../presentations/references/content-rules.md | 2 - .../references/template-following.md | 2 - .../skills/local/skill-creator/SKILL.md | 2 - .../skill-creator/references/openai_yaml.md | 2 - .../skills/local/skill-installer/SKILL.md | 2 - .../local/spreadsheets/API_QUICK_START.md | 2 - .../skills/local/spreadsheets/SKILL.md | 2 - .../skills/local/spreadsheets/charts.md | 2 - .../domain_guidance/corporate_finance_fpa.md | 2 - .../domain_guidance/financial_models.md | 2 - .../domain_guidance/healthcare.md | 2 - .../domain_guidance/marketing_advertising.md | 2 - .../domain_guidance/scientific_research.md | 2 - .../spreadsheets/routing/google_sheets.md | 2 - .../local/spreadsheets/style_guidelines.md | 2 - .../scripts/bindVariablesToComponent.js | 87 +- .../scripts/cleanupOrphans.js | 85 +- .../scripts/createComponentWithVariants.js | 94 +- .../scripts/createDocumentationPage.js | 153 +- .../scripts/createSemanticTokens.js | 58 +- .../scripts/createVariableCollection.js | 24 +- .../scripts/inspectFileStructure.js | 42 +- .../scripts/rehydrateState.js | 50 +- .../scripts/validateCreation.js | 34 +- .../references/plugin-api-standalone.d.ts | 4840 +++++++++-------- agents/woo-config-agent/README.md | 2 - .../current-memory/project-history.md | 2 - .../configuration/current-memory/todos.md | 2 - .../current-memory/user-preferences.md | 2 - .../configuration/memory-starters/README.md | 2 - .../memory-starters/project-history.md | 2 - .../memory-starters/session-handoff.md | 2 - .../configuration/memory-starters/todos.md | 2 - .../memory-starters/user-preferences.md | 2 - .../agent/configuration/prompts/README.md | 2 - .../app-usage-guidance-repair-prompt.md | 2 - .../app-usage-guidance-validation-prompt.md | 2 - .../prompts/connectors-guide-repair-prompt.md | 2 - .../connectors-guide-validation-prompt.md | 2 - .../instruction-reference-alignment-prompt.md | 2 - .../local-skill-adaptation-audit-prompt.md | 2 - .../local-skill-adaptation-repair-prompt.md | 2 - .../prompts/readme-refresh-prompt.md | 2 - .../prompts/routing-audit-prompt.md | 2 - .../routing-validation-cleanup-prompt.md | 2 - .../scenario-validation-refresh-prompt.md | 2 - .../prompts/schema-coverage-audit-prompt.md | 2 - .../skills-routing-directory-repair-prompt.md | 2 - ...lls-routing-directory-validation-prompt.md | 2 - .../prompts/source-snapshot-refresh-prompt.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../agent/configuration/schemas/README.md | 2 - .../agent/configuration/tests/README.md | 2 - .../tests/app-usage-consistency-source.md | 2 - .../instruction-file-consistency-source.md | 2 - .../tests/master-qa-checklist.md | 2 - .../tests/pre-launch-qa-checklist.md | 2 - .../qa-checklist-file-schema-validation.md | 2 - .../regression-checklist-master-validation.md | 2 - .../tests/scenario-validation-workflows.md | 2 - .../tests/schema-validation-tests.md | 2 - .../tests/seo-launch-checklist.md | 2 - .../short-description-consistency-source.md | 2 - .../starter-prompt-consistency-source.md | 2 - .../tests/test-plan-file-schema-validation.md | 2 - .../tests/test-plan-gravity-forms.md | 2 - .../configuration/tests/validation-readme.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../agent/other/business-context.md | 2 - .../agent/other/examples/README.md | 2 - .../examples/example-pre-launch-summary.md | 2 - .../other/examples/example-site-discovery.md | 2 - .../agent/references/CONNECTORS.md | 2 - .../agent/references/README.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/file-naming-conventions.md | 2 - .../references/gravity-forms-standard.md | 2 - .../references/woocommerce-store-standard.md | 2 - .../woo-config-agent/agent/scripts/README.md | 2 - .../agent/templates/README.md | 2 - .../templates/gravity-forms-plan-template.md | 2 - .../implementation-summary-template.md | 2 - .../templates/pre-launch-summary-template.md | 2 - .../templates/site-discovery-template.md | 2 - .../woocommerce-audit-report-template.md | 2 - .../templates/yoast-seo-audit-template.md | 2 - .../woo-config-agent/manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../woo-config-agent/manifests/redactions.md | 2 - agents/woo-config-agent/manifests/skills.md | 2 - .../manifests/validation-summary.md | 2 - .../gravity-forms-auditor/SKILL.md | 2 - .../examples/contact-form-audit.md | 2 - .../examples/notification-failure-audit.md | 2 - .../tour-operator-enquiry-form-audit.md | 2 - .../woocommerce-enquiry-form-audit.md | 2 - ...ur-operator-website-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility-audit.md | 2 - .../addons-feeds-and-integrations-audit.md | 2 - .../references/audit-checklists.md | 2 - .../references/audit-methodology.md | 2 - .../references/audit-scope-and-boundaries.md | 2 - .../auditor-configuration-contract.md | 2 - .../configuration-handoff-contract.md | 2 - .../references/gravity-forms-risk-model.md | 2 - .../references/mcp-readonly-capability-map.md | 2 - .../notifications-and-deliverability-audit.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy-audit.md | 2 - .../references/tour-operator-form-audit.md | 2 - .../references/woocommerce-form-audit.md | 2 - .../audit-to-configuration-workflow.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/read-only-mcp-permissions.md | 2 - .../auditor-configuration-handoff.md | 2 - .../templates/client-safe-audit-summary.md | 2 - .../templates/configuration-handoff.md | 2 - .../templates/findings-register.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/readiness-scorecard.md | 2 - .../templates/retest-report.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../gravity-forms-configuration/SKILL.md | 2 - .../examples/bilingual-contact-form.md | 2 - .../examples/business-listing-submission.md | 2 - .../examples/community-story-submission.md | 2 - .../examples/contest-entry.md | 2 - .../examples/customer-satisfaction-survey.md | 2 - .../examples/donation-payment-form.md | 2 - .../examples/event-registration.md | 2 - .../examples/file-upload-request.md | 2 - .../examples/ga4-lead-tracking.md | 2 - .../examples/knowledge-check-quiz.md | 2 - .../examples/membership-registration.md | 2 - .../examples/monthly-form-health-check.md | 2 - .../examples/multi-column-application-form.md | 2 - .../examples/newsletter-signup.md | 2 - .../examples/paid-event-registration.md | 2 - .../examples/public-poll.md | 2 - .../examples/service-quote-calculator.md | 2 - .../examples/styled-newsletter-embed.md | 2 - .../examples/support-request.md | 2 - .../examples/team-permissions-review.md | 2 - .../examples/tour-operator-enquiry.md | 2 - .../examples/utm-lead-capture.md | 2 - .../examples/webhook-lead-routing.md | 2 - .../examples/woocommerce-product-enquiry.md | 2 - .../examples/wordpress-contact-form.md | 2 - .../intake/form-requirements-intake.md | 2 - .../tour-operator-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility.md | 2 - .../references/addons-integrations.md | 2 - .../analytics-conversion-and-attribution.md | 2 - .../auditor-configuration-contract.md | 2 - .../references/auditor-handoff-contract.md | 2 - .../references/change-risk-and-approval.md | 2 - .../conditional-dynamic-calculation-logic.md | 2 - .../consent-localisation-and-microcopy.md | 2 - .../references/core-concepts.md | 2 - .../embedding-and-page-integration.md | 2 - .../references/entry-data-lifecycle.md | 2 - .../environment-and-compatibility.md | 2 - .../feeds-payments-user-registration.md | 2 - .../references/fields-and-form-objects.md | 2 - .../frontend-layout-and-theme-styling.md | 2 - .../references/import-export-and-migration.md | 2 - .../references/mcp-action-recipes.md | 2 - .../references/mcp-and-rest-api-contract.md | 2 - .../notifications-confirmations-merge-tags.md | 2 - .../operations-maintenance-and-inventory.md | 2 - .../references/output-templates.md | 2 - .../payment-donation-event-flows.md | 2 - .../permissions-and-capability-governance.md | 2 - .../post-creation-and-ugc-workflows.md | 2 - .../references/qa-and-test-playbooks.md | 2 - .../references/routing-and-agent-use.md | 2 - .../references/routing-boundaries.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy.md | 2 - .../survey-poll-quiz-assessments.md | 2 - .../references/tour-operator-configuration.md | 2 - .../references/troubleshooting.md | 2 - .../webhooks-and-automation-feeds.md | 2 - .../references/woocommerce-configuration.md | 2 - .../references/wordpress-configuration.md | 2 - .../references/workflows.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/permissions-and-mcp-actions.md | 2 - .../rollout/release-checklist.md | 2 - .../templates/assessment-plan.md | 2 - .../templates/auditor-handoff-intake.md | 2 - .../templates/change-summary.md | 2 - .../templates/configuration-plan.md | 2 - .../templates/consent-copy-review.md | 2 - .../templates/conversion-tracking-plan.md | 2 - .../templates/data-retention-review.md | 2 - .../templates/embed-validation.md | 2 - .../templates/feed-audit.md | 2 - .../templates/form-inventory-audit.md | 2 - .../templates/frontend-style-audit.md | 2 - .../templates/handoff-note.md | 2 - .../templates/layout-regression-check.md | 2 - .../templates/logic-map-review.md | 2 - .../templates/manual-implementation-plan.md | 2 - .../templates/notification-audit.md | 2 - .../templates/payment-flow-review.md | 2 - .../templates/payment-test-report.md | 2 - .../templates/permissions-review.md | 2 - .../templates/post-creation-feed-review.md | 2 - .../templates/preflight-report.md | 2 - .../templates/results-review.md | 2 - .../templates/risk-review.md | 2 - .../templates/test-report.md | 2 - .../templates/tracking-qa-report.md | 2 - .../templates/troubleshooting-runbook.md | 2 - .../templates/ugc-moderation-handoff.md | 2 - .../templates/webhook-feed-review.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../woocommerce-audit-orchestrator/SKILL.md | 2 - .../references/output-contract.md | 2 - .../SKILL.md | 2 - .../implementation-plan-template.md | 2 - .../woocommerce-project-onboarding/SKILL.md | 2 - .../woocommerce-remediation-triage/SKILL.md | 2 - .../woocommerce-site-discovery/SKILL.md | 2 - .../woocommerce-yoast-auditor/SKILL.md | 2 - .../docs/changelog.md | 2 - .../docs/evidence-policy.md | 2 - .../docs/maintenance-guide.md | 2 - .../docs/usage-guide.md | 2 - .../intake/audit-intake.md | 2 - .../intake/developer-handoff-intake.md | 2 - .../intake/migration-audit-intake.md | 2 - .../intake/site-evidence-intake.md | 2 - .../intake/woocommerce-audit-intake.md | 2 - .../profiles/ecommerce-catalogue-audit.md | 2 - .../profiles/ecommerce-transactional-audit.md | 2 - .../profiles/migration-rebuild-audit.md | 2 - .../references/audit-scope-router.md | 2 - .../references/developer-handoff-reference.md | 2 - .../references/evidence-map.md | 2 - .../references/finding-rules-library.md | 2 - .../references/migration-launch-reference.md | 2 - .../product-capability-boundaries.md | 2 - .../references/schema-audit-reference.md | 2 - .../references/source-register.md | 2 - .../references/woocommerce-audit-reference.md | 2 - .../references/yoast-output-reference.md | 2 - .../templates/client-audit-report.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/evidence-gap-report.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/launch-qa-report.md | 2 - .../templates/migration-readiness-report.md | 2 - .../templates/page-metadata-review.md | 2 - .../templates/schema-qa-report.md | 2 - .../templates/taxonomy-archive-review.md | 2 - .../templates/woocommerce-seo-audit-report.md | 2 - .../tests/audit-output-quality-tests.md | 2 - .../tests/fast-audit-mode-tests.md | 2 - .../tests/migration-launch-scenario-tests.md | 2 - .../tests/routing-scenario-tests.md | 2 - .../tests/schema-scenario-tests.md | 2 - .../tests/template-contract-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../wordpress-accessibility-checker/SKILL.md | 2 - .../examples/fix-mode-example.md | 2 - .../examples/normalisation-example.md | 2 - .../examples/report-mode-example.md | 2 - .../memory/README.md | 2 - .../references/issue-handling.md | 2 - .../references/manual-qa-checklist.md | 2 - .../references/mcp-access-patterns.md | 2 - .../references/remediation-boundaries.md | 2 - .../templates/audit-report.md | 2 - .../templates/client-summary.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/fix-log.md | 2 - .../templates/fix-plan.md | 2 - .../tests/README.md | 2 - .../agent-attached/yoast-auditor/SKILL.md | 2 - .../yoast-auditor/docs/changelog.md | 2 - .../yoast-auditor/docs/evidence-policy.md | 2 - .../yoast-auditor/docs/maintenance-guide.md | 2 - .../yoast-auditor/docs/usage-guide.md | 2 - .../yoast-auditor/intake/audit-intake.md | 2 - .../intake/developer-handoff-intake.md | 2 - .../intake/migration-audit-intake.md | 2 - .../intake/site-evidence-intake.md | 2 - .../intake/woocommerce-audit-intake.md | 2 - .../profiles/ecommerce-catalogue-audit.md | 2 - .../profiles/ecommerce-transactional-audit.md | 2 - .../profiles/local-business-audit.md | 2 - .../profiles/migration-rebuild-audit.md | 2 - .../profiles/multilingual-audit.md | 2 - .../profiles/publisher-blog-audit.md | 2 - .../profiles/standard-business-audit.md | 2 - .../references/audit-scope-router.md | 2 - .../references/developer-handoff-reference.md | 2 - .../yoast-auditor/references/evidence-map.md | 2 - .../references/finding-rules-library.md | 2 - .../references/migration-launch-reference.md | 2 - .../product-capability-boundaries.md | 2 - .../references/schema-audit-reference.md | 2 - .../references/source-register.md | 2 - .../references/woocommerce-audit-reference.md | 2 - .../references/yoast-output-reference.md | 2 - .../templates/client-audit-report.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/evidence-gap-report.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/launch-qa-report.md | 2 - .../templates/migration-readiness-report.md | 2 - .../templates/page-metadata-review.md | 2 - .../templates/schema-qa-report.md | 2 - .../templates/taxonomy-archive-review.md | 2 - .../templates/woocommerce-seo-audit-report.md | 2 - .../tests/audit-output-quality-tests.md | 2 - .../tests/fast-audit-mode-tests.md | 2 - .../tests/migration-launch-scenario-tests.md | 2 - .../tests/routing-scenario-tests.md | 2 - .../tests/schema-scenario-tests.md | 2 - .../tests/template-contract-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../yoast-configuration/SKILL.md | 2 - .../yoast-configuration/docs/changelog.md | 2 - .../docs/current-verification-playbook.md | 2 - .../docs/evidence-policy.md | 2 - .../docs/maintenance-guide.md | 2 - .../docs/reference-refresh-protocol.md | 2 - .../docs/research-workflow.md | 2 - .../yoast-configuration/docs/usage-guide.md | 2 - .../memory/example-agency-defaults.md | 2 - .../memory/example-client-site-profile.md | 2 - .../examples/migration-audit-example.md | 2 - .../examples/schema-customisation-example.md | 2 - .../standard-business-site-example.md | 2 - .../templates/client-summary-template.md | 2 - .../templates/developer-handoff-template.md | 2 - .../examples/templates/qa-report-template.md | 2 - .../examples/woocommerce-store-example.md | 2 - .../intake/client-site-intake.md | 2 - .../intake/migration-intake.md | 2 - .../intake/woocommerce-intake.md | 2 - .../intake/wordpress-site-intake.md | 2 - .../memory/defaults/agency-defaults.md | 2 - .../memory/defaults/schema-defaults.md | 2 - .../defaults/standard-yoast-defaults.md | 2 - .../memory/defaults/woocommerce-defaults.md | 2 - .../profiles/business-website.md | 2 - .../profiles/ecommerce-catalogue.md | 2 - .../profiles/ecommerce-transactional.md | 2 - .../profiles/local-business.md | 2 - .../profiles/migration-rebuild.md | 2 - .../profiles/multilingual-site.md | 2 - .../profiles/publisher-blog.md | 2 - .../references/access-level-workflow.md | 2 - .../references/agency-defaults-drift-model.md | 2 - .../references/ai-assisted-seo-workflow.md | 2 - .../references/ai-metadata-review-model.md | 2 - .../references/approval-queue-workflow.md | 2 - .../references/audit-triage-model.md | 2 - .../references/bulk-metadata-governance.md | 2 - .../client-communication-guardrails.md | 2 - .../references/configuration-playbooks.md | 2 - .../references/configuration-reference.md | 2 - .../conflict-resolution-playbook.md | 2 - .../content-structure-taxonomy-playbook.md | 2 - .../references/decision-register-model.md | 2 - .../references/developer-api-reference.md | 2 - .../references/evidence-state-model.md | 2 - .../references/feature-behaviour-reference.md | 2 - .../references/file-routing-index.md | 2 - .../references/future-skill-architecture.md | 2 - .../references/locale-metadata-governance.md | 2 - .../multilingual-hreflang-playbook.md | 2 - .../periodic-health-review-playbook.md | 2 - .../plugin-update-regression-playbook.md | 2 - .../references/portfolio-audit-playbook.md | 2 - .../references/product-capability-matrix.md | 2 - .../references/qa-checklists.md | 2 - .../references/redirect-map-decision-model.md | 2 - .../redirect-migration-governance.md | 2 - .../references/related-skills-routing.md | 2 - .../references/remediation-backlog-model.md | 2 - .../references/rendered-output-qa-playbook.md | 2 - .../references/research-pack-output-spec.md | 2 - .../references/schema-reference.md | 2 - .../settings-export-review-playbook.md | 2 - .../references/source-register.md | 2 - .../references/state-comparison-playbook.md | 2 - .../taxonomy-indexation-decision-model.md | 2 - .../references/woocommerce-seo-reference.md | 2 - .../references/yoast-health-score-model.md | 2 - .../rollout/implementation-plan.md | 2 - .../rollout/team-adoption-notes.md | 2 - .../rollout/validation-plan.md | 2 - .../rollout/versioning-policy.md | 2 - .../templates/ai-metadata-approval-pack.md | 2 - .../templates/client-safe-summary.md | 2 - .../content-structure-remediation-plan.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/launch-qa-checklist.md | 2 - .../templates/metadata-bulk-edit-plan.md | 2 - .../migration-launch-seo-control-plan.md | 2 - .../templates/multilingual-seo-qa-report.md | 2 - .../templates/redirect-map-review.md | 2 - .../templates/rendered-output-qa-report.md | 2 - .../templates/settings-export-review.md | 2 - .../templates/source-register-row-template.md | 2 - .../taxonomy-indexation-decision-pack.md | 2 - .../translated-metadata-approval-pack.md | 2 - .../templates/wordpress-admin-change-plan.md | 2 - .../templates/yoast-acceptance-criteria.md | 2 - .../yoast-ai-plus-positioning-note.md | 2 - .../templates/yoast-approval-queue.md | 2 - .../templates/yoast-audit-report.md | 2 - .../templates/yoast-configuration-report.md | 2 - .../templates/yoast-decision-log.md | 2 - .../templates/yoast-defaults-drift-report.md | 2 - .../templates/yoast-health-summary.md | 2 - .../yoast-portfolio-audit-summary.md | 2 - .../templates/yoast-regression-test-report.md | 2 - .../templates/yoast-remediation-backlog.md | 2 - .../templates/yoast-research-pack.md | 2 - .../templates/yoast-retainer-review-note.md | 2 - .../yoast-state-comparison-report.md | 2 - .../templates/yoast-troubleshooting-note.md | 2 - .../templates/yoast-woocommerce-report.md | 2 - .../access-remediation-scenario-tests.md | 2 - .../tests/ai-assisted-seo-scenario-tests.md | 2 - .../tests/artefact-review-scenario-tests.md | 2 - .../tests/audit-triage-scenario-tests.md | 2 - ...bulk-metadata-governance-scenario-tests.md | 2 - .../comparison-regression-scenario-tests.md | 2 - .../tests/configuration-scenario-tests.md | 2 - .../tests/content-taxonomy-scenario-tests.md | 2 - .../tests/decision-conflict-scenario-tests.md | 2 - .../tests/developer-api-reference-tests.md | 2 - .../tests/health-review-scenario-tests.md | 2 - .../multilingual-hreflang-scenario-tests.md | 2 - .../portfolio-defaults-scenario-tests.md | 2 - .../redirect-migration-scenario-tests.md | 2 - .../tests/reference-data-validation.md | 2 - .../related-skills-routing-scenario-tests.md | 2 - .../tests/research-pack-scenario-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/wp-config-agent/README.md | 2 - .../agent/configuration/memory/README.md | 2 - .../configuration/memory/project-history.md | 2 - .../configuration/memory/session-handoff.md | 2 - .../agent/configuration/memory/todos.md | 2 - .../configuration/memory/user-preferences.md | 2 - .../agent/configuration/profiles/README.md | 2 - .../configuration/runtime-memory/todos.md | 2 - .../agent/configuration/schemas/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - agents/wp-config-agent/agent/other/README.md | 2 - .../agent/other/business-context.md | 2 - .../agent/other/examples/README.md | 2 - .../examples/example-pre-launch-summary.md | 2 - .../other/examples/example-site-discovery.md | 2 - .../agent/other/fixtures/README.md | 2 - .../agent/other/prompts/README.md | 2 - ...ibility-checker-assets-alignment-prompt.md | 2 - .../app-and-connectors-consistency-prompt.md | 2 - ...ached-skills-reference-alignment-prompt.md | 2 - .../business-context-tightening-prompt.md | 2 - ...ty-tags-and-file-reference-audit-prompt.md | 2 - ...gravity-forms-assets-consistency-prompt.md | 2 - ...guration-wordpress-scope-cleanup-prompt.md | 2 - ...ns-and-file-references-alignment-prompt.md | 2 - ...aunch-readiness-assets-alignment-prompt.md | 2 - ...skill-wordpress-adaptation-audit-prompt.md | 2 - .../local-skills-inventory-refresh-prompt.md | 2 - .../memory-layer-consistency-prompt.md | 2 - .../prompt-library-deduplication-prompt.md | 2 - ...prompt-library-inventory-refresh-prompt.md | 2 - .../readme-recurring-cleanup-prompt.md | 2 - .../reference-guides-consistency-prompt.md | 2 - ...g-rules-and-template-consistency-prompt.md | 2 - .../prompts/root-readme-refresh-prompt.md | 2 - .../routing-language-cleanup-prompt.md | 2 - .../skill-scope-impact-remediation-plan.md | 2 - ...routing-and-directory-validation-prompt.md | 2 - .../starter-prompts-alignment-prompt.md | 2 - .../template-and-example-alignment-prompt.md | 2 - .../validation-pack-tightening-prompt.md | 2 - .../validator-coverage-gap-review-prompt.md | 2 - .../yoast-assets-consistency-prompt.md | 2 - ...iew-evaluation-and-display-debug-prompt.md | 2 - .../yoast-configuration-audit/README.md | 2 - ...nfiguration-wordpress-cleanup-checklist.md | 2 - ...figuration-wordpress-concrete-edit-plan.md | 2 - ...n-wordpress-keep-rewrite-split-manifest.md | 2 - .../agent/other/tests/README.md | 2 - .../agent-structure-validation-source.md | 2 - .../tests/app-usage-consistency-source.md | 2 - .../instruction-file-consistency-source.md | 2 - .../agent/other/tests/master-qa-checklist.md | 2 - .../other/tests/pre-launch-qa-checklist.md | 2 - .../qa-checklist-file-schema-validation.md | 2 - .../regression-checklist-master-validation.md | 2 - .../other/tests/scenario-decision-tracing.md | 2 - .../other/tests/scenario-digest-generation.md | 2 - .../tests/scenario-file-first-research.md | 2 - .../tests/scenario-follow-up-open-loops.md | 2 - .../other/tests/scenario-memory-updates.md | 2 - .../other/tests/schema-validation-tests.md | 2 - .../agent/other/tests/seo-launch-checklist.md | 2 - .../short-description-consistency-source.md | 2 - .../starter-prompt-consistency-source.md | 2 - .../tests/test-plan-file-schema-validation.md | 2 - .../other/tests/test-plan-gravity-forms.md | 2 - .../agent/other/tests/validation-readme.md | 2 - .../agent/other/tests/validation-workflow.md | 2 - .../agent/references/references/CONNECTORS.md | 2 - .../agent/references/references/README.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../references/file-naming-conventions.md | 2 - .../references/gravity-forms-standard.md | 2 - .../agent/scripts/scripts/README.md | 2 - .../agent/templates/templates/README.md | 2 - .../templates/gravity-forms-plan-template.md | 2 - .../templates/pre-launch-summary-template.md | 2 - .../templates/site-discovery-template.md | 2 - .../wp-config-agent/manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../wp-config-agent/manifests/redactions.md | 2 - agents/wp-config-agent/manifests/skills.md | 2 - .../manifests/validation-notes.md | 2 - .../gravity-forms-auditor/SKILL.md | 2 - .../examples/contact-form-audit.md | 2 - .../examples/notification-failure-audit.md | 2 - .../tour-operator-enquiry-form-audit.md | 2 - .../woocommerce-enquiry-form-audit.md | 2 - ...ur-operator-website-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility-audit.md | 2 - .../addons-feeds-and-integrations-audit.md | 2 - .../references/audit-checklists.md | 2 - .../references/audit-methodology.md | 2 - .../references/audit-scope-and-boundaries.md | 2 - .../auditor-configuration-contract.md | 2 - .../configuration-handoff-contract.md | 2 - .../references/gravity-forms-risk-model.md | 2 - .../references/mcp-readonly-capability-map.md | 2 - .../notifications-and-deliverability-audit.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy-audit.md | 2 - .../references/tour-operator-form-audit.md | 2 - .../references/woocommerce-form-audit.md | 2 - .../audit-to-configuration-workflow.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/read-only-mcp-permissions.md | 2 - .../auditor-configuration-handoff.md | 2 - .../templates/client-safe-audit-summary.md | 2 - .../templates/configuration-handoff.md | 2 - .../templates/findings-register.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/readiness-scorecard.md | 2 - .../templates/retest-report.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../gravity-forms-configuration/SKILL.md | 2 - .../examples/bilingual-contact-form.md | 2 - .../examples/business-listing-submission.md | 2 - .../examples/community-story-submission.md | 2 - .../examples/contest-entry.md | 2 - .../examples/customer-satisfaction-survey.md | 2 - .../examples/donation-payment-form.md | 2 - .../examples/event-registration.md | 2 - .../examples/file-upload-request.md | 2 - .../examples/ga4-lead-tracking.md | 2 - .../examples/knowledge-check-quiz.md | 2 - .../examples/membership-registration.md | 2 - .../examples/monthly-form-health-check.md | 2 - .../examples/multi-column-application-form.md | 2 - .../examples/newsletter-signup.md | 2 - .../examples/paid-event-registration.md | 2 - .../examples/public-poll.md | 2 - .../examples/service-quote-calculator.md | 2 - .../examples/styled-newsletter-embed.md | 2 - .../examples/support-request.md | 2 - .../examples/team-permissions-review.md | 2 - .../examples/tour-operator-enquiry.md | 2 - .../examples/utm-lead-capture.md | 2 - .../examples/webhook-lead-routing.md | 2 - .../examples/woocommerce-product-enquiry.md | 2 - .../examples/wordpress-contact-form.md | 2 - .../intake/form-requirements-intake.md | 2 - .../tour-operator-configuration-agent.md | 2 - .../woocommerce-configuration-agent.md | 2 - .../profiles/wordpress-configuration-agent.md | 2 - .../references/accessibility.md | 2 - .../references/addons-integrations.md | 2 - .../analytics-conversion-and-attribution.md | 2 - .../auditor-configuration-contract.md | 2 - .../references/auditor-handoff-contract.md | 2 - .../references/change-risk-and-approval.md | 2 - .../conditional-dynamic-calculation-logic.md | 2 - .../consent-localisation-and-microcopy.md | 2 - .../references/core-concepts.md | 2 - .../embedding-and-page-integration.md | 2 - .../references/entry-data-lifecycle.md | 2 - .../environment-and-compatibility.md | 2 - .../feeds-payments-user-registration.md | 2 - .../references/fields-and-form-objects.md | 2 - .../frontend-layout-and-theme-styling.md | 2 - .../references/import-export-and-migration.md | 2 - .../references/mcp-action-recipes.md | 2 - .../references/mcp-and-rest-api-contract.md | 2 - .../notifications-confirmations-merge-tags.md | 2 - .../operations-maintenance-and-inventory.md | 2 - .../references/output-templates.md | 2 - .../payment-donation-event-flows.md | 2 - .../permissions-and-capability-governance.md | 2 - .../post-creation-and-ugc-workflows.md | 2 - .../references/qa-and-test-playbooks.md | 2 - .../references/routing-and-agent-use.md | 2 - .../references/routing-boundaries.md | 2 - .../references/source-register.md | 2 - .../references/spam-security-privacy.md | 2 - .../survey-poll-quiz-assessments.md | 2 - .../references/tour-operator-configuration.md | 2 - .../references/troubleshooting.md | 2 - .../webhooks-and-automation-feeds.md | 2 - .../references/woocommerce-configuration.md | 2 - .../references/wordpress-configuration.md | 2 - .../references/workflows.md | 2 - .../rollout/install-and-attach.md | 2 - .../rollout/permissions-and-mcp-actions.md | 2 - .../rollout/release-checklist.md | 2 - .../templates/assessment-plan.md | 2 - .../templates/auditor-handoff-intake.md | 2 - .../templates/change-summary.md | 2 - .../templates/configuration-plan.md | 2 - .../templates/consent-copy-review.md | 2 - .../templates/conversion-tracking-plan.md | 2 - .../templates/data-retention-review.md | 2 - .../templates/embed-validation.md | 2 - .../templates/feed-audit.md | 2 - .../templates/form-inventory-audit.md | 2 - .../templates/frontend-style-audit.md | 2 - .../templates/handoff-note.md | 2 - .../templates/layout-regression-check.md | 2 - .../templates/logic-map-review.md | 2 - .../templates/manual-implementation-plan.md | 2 - .../templates/notification-audit.md | 2 - .../templates/payment-flow-review.md | 2 - .../templates/payment-test-report.md | 2 - .../templates/permissions-review.md | 2 - .../templates/post-creation-feed-review.md | 2 - .../templates/preflight-report.md | 2 - .../templates/results-review.md | 2 - .../templates/risk-review.md | 2 - .../templates/test-report.md | 2 - .../templates/tracking-qa-report.md | 2 - .../templates/troubleshooting-runbook.md | 2 - .../templates/ugc-moderation-handoff.md | 2 - .../templates/webhook-feed-review.md | 2 - .../tests/acceptance-checklist.md | 2 - .../tests/test-prompts.md | 2 - .../wordpress-accessibility-checker/SKILL.md | 2 - .../examples/fix-mode-example.md | 2 - .../examples/normalisation-example.md | 2 - .../examples/report-mode-example.md | 2 - .../memory/README.md | 2 - .../references/issue-handling.md | 2 - .../references/manual-qa-checklist.md | 2 - .../references/mcp-access-patterns.md | 2 - .../references/remediation-boundaries.md | 2 - .../templates/audit-report.md | 2 - .../templates/client-summary.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/fix-log.md | 2 - .../templates/fix-plan.md | 2 - .../tests/README.md | 2 - .../wordpress-audit-reporting/SKILL.md | 2 - .../wordpress-inspection-preflight/SKILL.md | 2 - .../wordpress-launch-readiness/SKILL.md | 2 - .../wordpress-remediation-planner/SKILL.md | 2 - .../wordpress-request-router/SKILL.md | 2 - .../wordpress-site-onboarding/SKILL.md | 2 - .../agent-attached/yoast-auditor/SKILL.md | 2 - .../yoast-auditor/docs/changelog.md | 2 - .../yoast-auditor/docs/evidence-policy.md | 2 - .../yoast-auditor/docs/maintenance-guide.md | 2 - .../yoast-auditor/docs/usage-guide.md | 2 - .../yoast-auditor/intake/audit-intake.md | 2 - .../intake/developer-handoff-intake.md | 2 - .../intake/migration-audit-intake.md | 2 - .../intake/site-evidence-intake.md | 2 - .../intake/woocommerce-audit-intake.md | 2 - .../profiles/ecommerce-catalogue-audit.md | 2 - .../profiles/ecommerce-transactional-audit.md | 2 - .../profiles/local-business-audit.md | 2 - .../profiles/migration-rebuild-audit.md | 2 - .../profiles/multilingual-audit.md | 2 - .../profiles/publisher-blog-audit.md | 2 - .../profiles/standard-business-audit.md | 2 - .../references/audit-scope-router.md | 2 - .../references/developer-handoff-reference.md | 2 - .../yoast-auditor/references/evidence-map.md | 2 - .../references/finding-rules-library.md | 2 - .../references/migration-launch-reference.md | 2 - .../product-capability-boundaries.md | 2 - .../references/schema-audit-reference.md | 2 - .../references/source-register.md | 2 - .../references/woocommerce-audit-reference.md | 2 - .../references/yoast-output-reference.md | 2 - .../templates/client-audit-report.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/evidence-gap-report.md | 2 - .../templates/internal-audit-report.md | 2 - .../templates/launch-qa-report.md | 2 - .../templates/migration-readiness-report.md | 2 - .../templates/page-metadata-review.md | 2 - .../templates/schema-qa-report.md | 2 - .../templates/taxonomy-archive-review.md | 2 - .../templates/woocommerce-seo-audit-report.md | 2 - .../tests/audit-output-quality-tests.md | 2 - .../tests/fast-audit-mode-tests.md | 2 - .../tests/migration-launch-scenario-tests.md | 2 - .../tests/routing-scenario-tests.md | 2 - .../tests/schema-scenario-tests.md | 2 - .../tests/template-contract-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../yoast-configuration/SKILL.md | 2 - .../yoast-configuration/docs/changelog.md | 2 - .../docs/current-verification-playbook.md | 2 - .../docs/evidence-policy.md | 2 - .../docs/maintenance-guide.md | 2 - .../docs/reference-refresh-protocol.md | 2 - .../docs/research-workflow.md | 2 - .../yoast-configuration/docs/usage-guide.md | 2 - .../memory/example-agency-defaults.md | 2 - .../memory/example-client-site-profile.md | 2 - .../examples/migration-audit-example.md | 2 - .../examples/schema-customisation-example.md | 2 - .../standard-business-site-example.md | 2 - .../templates/client-summary-template.md | 2 - .../templates/developer-handoff-template.md | 2 - .../examples/templates/qa-report-template.md | 2 - .../examples/woocommerce-store-example.md | 2 - .../intake/client-site-intake.md | 2 - .../intake/migration-intake.md | 2 - .../intake/woocommerce-intake.md | 2 - .../intake/wordpress-site-intake.md | 2 - .../memory/defaults/agency-defaults.md | 2 - .../memory/defaults/schema-defaults.md | 2 - .../defaults/standard-yoast-defaults.md | 2 - .../memory/defaults/woocommerce-defaults.md | 2 - .../profiles/business-website.md | 2 - .../profiles/ecommerce-catalogue.md | 2 - .../profiles/ecommerce-transactional.md | 2 - .../profiles/local-business.md | 2 - .../profiles/migration-rebuild.md | 2 - .../profiles/multilingual-site.md | 2 - .../profiles/publisher-blog.md | 2 - .../references/access-level-workflow.md | 2 - .../references/agency-defaults-drift-model.md | 2 - .../references/ai-assisted-seo-workflow.md | 2 - .../references/ai-metadata-review-model.md | 2 - .../references/approval-queue-workflow.md | 2 - .../references/audit-triage-model.md | 2 - .../references/bulk-metadata-governance.md | 2 - .../client-communication-guardrails.md | 2 - .../references/configuration-playbooks.md | 2 - .../references/configuration-reference.md | 2 - .../conflict-resolution-playbook.md | 2 - .../content-structure-taxonomy-playbook.md | 2 - .../references/decision-register-model.md | 2 - .../references/developer-api-reference.md | 2 - .../references/evidence-state-model.md | 2 - .../references/feature-behaviour-reference.md | 2 - .../references/file-routing-index.md | 2 - .../references/future-skill-architecture.md | 2 - .../references/locale-metadata-governance.md | 2 - .../multilingual-hreflang-playbook.md | 2 - .../periodic-health-review-playbook.md | 2 - .../plugin-update-regression-playbook.md | 2 - .../references/portfolio-audit-playbook.md | 2 - .../references/product-capability-matrix.md | 2 - .../references/qa-checklists.md | 2 - .../references/redirect-map-decision-model.md | 2 - .../redirect-migration-governance.md | 2 - .../references/related-skills-routing.md | 2 - .../references/remediation-backlog-model.md | 2 - .../references/rendered-output-qa-playbook.md | 2 - .../references/research-pack-output-spec.md | 2 - .../references/schema-reference.md | 2 - .../settings-export-review-playbook.md | 2 - .../references/source-register.md | 2 - .../references/state-comparison-playbook.md | 2 - .../taxonomy-indexation-decision-model.md | 2 - .../references/woocommerce-seo-reference.md | 2 - .../references/yoast-health-score-model.md | 2 - .../rollout/implementation-plan.md | 2 - .../rollout/team-adoption-notes.md | 2 - .../rollout/validation-plan.md | 2 - .../rollout/versioning-policy.md | 2 - .../templates/ai-metadata-approval-pack.md | 2 - .../templates/client-safe-summary.md | 2 - .../content-structure-remediation-plan.md | 2 - .../templates/developer-handoff.md | 2 - .../templates/launch-qa-checklist.md | 2 - .../templates/metadata-bulk-edit-plan.md | 2 - .../migration-launch-seo-control-plan.md | 2 - .../templates/multilingual-seo-qa-report.md | 2 - .../templates/redirect-map-review.md | 2 - .../templates/rendered-output-qa-report.md | 2 - .../templates/settings-export-review.md | 2 - .../templates/source-register-row-template.md | 2 - .../taxonomy-indexation-decision-pack.md | 2 - .../translated-metadata-approval-pack.md | 2 - .../templates/wordpress-admin-change-plan.md | 2 - .../templates/yoast-acceptance-criteria.md | 2 - .../yoast-ai-plus-positioning-note.md | 2 - .../templates/yoast-approval-queue.md | 2 - .../templates/yoast-audit-report.md | 2 - .../templates/yoast-configuration-report.md | 2 - .../templates/yoast-decision-log.md | 2 - .../templates/yoast-defaults-drift-report.md | 2 - .../templates/yoast-health-summary.md | 2 - .../yoast-portfolio-audit-summary.md | 2 - .../templates/yoast-regression-test-report.md | 2 - .../templates/yoast-remediation-backlog.md | 2 - .../templates/yoast-research-pack.md | 2 - .../templates/yoast-retainer-review-note.md | 2 - .../yoast-state-comparison-report.md | 2 - .../templates/yoast-troubleshooting-note.md | 2 - .../templates/yoast-woocommerce-report.md | 2 - .../access-remediation-scenario-tests.md | 2 - .../tests/ai-assisted-seo-scenario-tests.md | 2 - .../tests/artefact-review-scenario-tests.md | 2 - .../tests/audit-triage-scenario-tests.md | 2 - ...bulk-metadata-governance-scenario-tests.md | 2 - .../comparison-regression-scenario-tests.md | 2 - .../tests/configuration-scenario-tests.md | 2 - .../tests/content-taxonomy-scenario-tests.md | 2 - .../tests/decision-conflict-scenario-tests.md | 2 - .../tests/developer-api-reference-tests.md | 2 - .../tests/health-review-scenario-tests.md | 2 - .../multilingual-hreflang-scenario-tests.md | 2 - .../portfolio-defaults-scenario-tests.md | 2 - .../redirect-migration-scenario-tests.md | 2 - .../tests/reference-data-validation.md | 2 - .../related-skills-routing-scenario-tests.md | 2 - .../tests/research-pack-scenario-tests.md | 2 - .../tests/woocommerce-scenario-tests.md | 2 - .../skills/local/frontend-skill/SKILL.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- agents/zendesk-support-agent/README.md | 2 - .../agent/instructions/AGENTS.md | 2 - .../memory/drafting-preferences.example.md | 2 - .../other/examples/memory/todos.example.md | 2 - .../memory/user-preferences.example.md | 2 - .../templates/agent-backlog-report.example.md | 2 - .../templates/agent-customer-reply.example.md | 2 - .../templates/agent-escalation.example.md | 2 - .../templates/agent-handoff.example.md | 2 - .../templates/agent-investigation.example.md | 2 - .../templates/agent-triage-summary.example.md | 2 - .../other/fixtures/backlog-audit-fixture.md | 2 - .../other/fixtures/ticket-intake-fixture.md | 2 - .../other/memory/drafting-preferences.md | 2 - .../agent/other/memory/todos.md | 2 - .../agent/other/memory/user-preferences.md | 2 - .../agent-improvement-implementation-plan.md | 2 - .../tests/app-usage-consistency-tests.md | 2 - .../other/tests/memory-validation-tests.md | 2 - .../agent/other/tests/reply-safety-tests.md | 2 - .../tests/schema-validation-smoke-tests.md | 2 - .../other/tests/schema-validation-tests.md | 2 - .../agent/other/tests/skill-routing-tests.md | 2 - .../agent/other/tests/starter-prompt-tests.md | 2 - .../zendesk-mcp-approval-audit-qa-script.md | 2 - .../zendesk-support-agent-smoke-tests.md | 2 - ...support-agent-verification-audit-prompt.md | 2 - .../agent/references/CONNECTORS.md | 2 - .../agent/references/agent-file-map.md | 2 - .../agent/references/agent-memory-policy.md | 2 - .../agent/references/app-usage-matrix.md | 2 - .../audit-docs-validation-workflow.md | 2 - .../agent/references/business-context.md | 2 - .../references/default-operating-mode.md | 2 - .../agent/references/instructions.snapshot.md | 2 - .../agent/references/output-standards.md | 2 - .../agent/references/qa-standards.md | 2 - .../agent/references/rollout-file-brief.md | 2 - .../references/skill-collision-inventory.md | 2 - .../agent/references/validation-guide.md | 2 - .../agent-backlog-report-template.md | 2 - .../agent-customer-reply-template.md | 2 - .../templates/agent-escalation-template.md | 2 - .../agent/templates/agent-handoff-template.md | 2 - .../templates/agent-investigation-template.md | 2 - .../agent-triage-summary-template.md | 2 - .../manifests/agent-files.md | 2 - .../manifests/inaccessible-resources.md | 2 - .../manifests/redactions.md | 2 - .../zendesk-support-agent/manifests/skills.md | 2 - .../manifests/validation-summary.md | 2 - .../zendesk-backlog-trend-analysis/SKILL.md | 2 - .../examples/backlog-health-good.md | 2 - .../examples/bad-output-anti-patterns.md | 2 - .../examples/permission-limited-response.md | 2 - .../examples/prompt-cookbook.md | 2 - .../examples/qa-check-example.md | 2 - .../examples/smoke-test-results-template.md | 2 - .../examples/trend-comparison-good.md | 2 - .../examples/weekly-report-good.md | 2 - .../references/capability-preflight.md | 2 - .../capability-profile-maintenance.md | 2 - .../evidence-classification-guide.md | 2 - .../references/follow-on-routing-guide.md | 2 - .../references/memory-policy.md | 2 - .../references/privacy-redaction-guide.md | 2 - .../references/report-intent-router.md | 2 - .../references/report-qa-checklist.md | 2 - .../references/risk-labelling-guide.md | 2 - .../references/shared-agent-compatibility.md | 2 - .../shared-agent-rollout-checklist.md | 2 - .../shared-agent-smoke-test-plan.md | 2 - .../workspace-capability-profile.md | 2 - .../references/zendesk-query-recipes.md | 2 - .../templates/backlog-health-summary.md | 2 - .../templates/daily-digest.md | 2 - .../templates/evidence-basis.md | 2 - .../templates/repeated-theme-review.md | 2 - .../shared-agent-installation-note.md | 2 - .../templates/trend-comparison.md | 2 - .../templates/weekly-support-report.md | 2 - .../zendesk-bug-report-package/SKILL.md | 2 - .../examples/bug-package-cases.md | 2 - .../examples/shared-agent-smoke-tests.md | 2 - .../references/memory-policy.md | 2 - .../references/router-integration.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-setup.md | 2 - .../references/source-access-profile.md | 2 - .../templates/bug-package-template.md | 2 - .../zendesk-case-readiness-check/SKILL.md | 2 - .../connector-capability-fallbacks.md | 2 - .../references/examples.md | 2 - .../references/minimum-evidence-matrix.md | 2 - .../references/readiness-schema.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-integration.md | 2 - .../references/shared-agent-safety.md | 2 - .../references/structured-output-guide.md | 2 - .../zendesk-create-knowledge/SKILL.md | 2 - .../references/article-templates.md | 2 - .../references/evidence-confidence-rubric.md | 2 - .../references/examples.md | 2 - .../references/public-internal-boundary.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-runtime-rules.md | 2 - .../zendesk-customer-escalation/SKILL.md | 2 - .../references/CONNECTORS.example.md | 2 - .../references/escalation-lanes.md | 2 - .../references/escalation-record-schema.md | 2 - .../references/routing-boundaries.md | 2 - .../references/severity-matrix.md | 2 - .../references/shared-agent-portability.md | 2 - .../templates/escalation-template.md | 2 - .../zendesk-customer-research/SKILL.md | 2 - .../references/citation-ledger-schema.md | 2 - .../references/examples.md | 2 - .../references/health-rubric.md | 2 - .../references/input-normalisation-schema.md | 2 - .../references/output-template.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-access-model.md | 2 - .../references/source-permission-matrix.md | 2 - .../zendesk-draft-response/SKILL.md | 2 - .../examples/billing-risk.expected.md | 2 - .../examples/billing-risk.input.md | 2 - .../examples/feature-limitation.expected.md | 2 - .../examples/feature-limitation.input.md | 2 - .../examples/frustrated-follow-up.expected.md | 2 - .../examples/frustrated-follow-up.input.md | 2 - .../examples/localisation.expected.md | 2 - .../examples/localisation.input.md | 2 - .../examples/new-issue.expected.md | 2 - .../examples/new-issue.input.md | 2 - .../examples/no-eta-delay.expected.md | 2 - .../examples/no-eta-delay.input.md | 2 - .../references/connector-source-map.md | 2 - .../references/data-redaction-rules.md | 2 - .../references/escalation-boundaries.md | 2 - .../references/evidence-quality-rules.md | 2 - .../references/localisation-rules.md | 2 - .../references/routing-boundaries.md | 2 - .../shared-agent-installation-checklist.md | 2 - .../shared-agent-regression-tests.md | 2 - .../references/shared-agent-setup.md | 2 - .../references/tone-playbook.md | 2 - .../templates/CONNECTORS.example.md | 2 - .../templates/customer-reply-template.md | 2 - .../redacted-support-context-template.md | 2 - .../templates/reply-only-template.md | 2 - .../tests/shared-agent-smoke-prompts.md | 2 - .../zendesk-duplicate-pattern-review/SKILL.md | 2 - .../examples/anonymised-ticket-comparisons.md | 2 - .../references/routing-boundaries.md | 2 - .../shared-agent-connector-matrix.md | 2 - .../references/shared-agent-usage.md | 2 - .../references/zendesk-evidence-checklist.md | 2 - .../zendesk-evidence-collector/SKILL.md | 2 - .../examples/README.md | 2 - .../examples/evidence-pack-partially-ready.md | 2 - .../examples/evidence-pack-ready.md | 2 - .../investigation-blocked-event-time.md | 2 - .../zendesk-unavailable-pasted-thread-only.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-compatibility.md | 2 - .../references/shared-agent-defaults.md | 2 - .../references/source-precedence-examples.md | 2 - .../templates/evidence-pack.md | 2 - .../templates/investigation-report.md | 2 - .../zendesk-evidence-quality-review/SKILL.md | 2 - .../backlog-summary-review-example.md | 2 - .../examples/customer-reply-review-example.md | 2 - .../examples/escalation-review-example.md | 2 - .../knowledge-draft-review-example.md | 2 - .../privacy-redaction-review-example.md | 2 - .../review-severity-calibration-cases.md | 2 - .../examples/routing-boundary-cases.md | 2 - .../shared-agent-acceptance-test-fixtures.md | 2 - .../references/connector-access-fallbacks.md | 2 - .../references/evidence-intake-standards.md | 2 - .../privacy-and-redaction-review.md | 2 - .../review-severity-and-confidence-rubric.md | 2 - .../references/routing-boundaries.md | 2 - .../routing-readiness-decision-matrix.md | 2 - .../shared-agent-operating-model.md | 2 - ...ared-agent-rollout-and-acceptance-tests.md | 2 - .../references/structured-json-output.md | 2 - .../references/support-risk-language-bank.md | 2 - .../templates/backlog-report-review.md | 2 - .../templates/customer-reply-review.md | 2 - .../templates/escalation-review.md | 2 - .../templates/knowledge-draft-review.md | 2 - .../missing-evidence-routing-response.md | 2 - .../templates/privacy-redaction-review.md | 2 - .../templates/review-report.md | 2 - .../shared-agent-smoke-test-report.md | 2 - .../zendesk-handoff-prep/SKILL.md | 2 - .../examples/engineering-handoff.md | 2 - .../examples/insufficient-evidence.md | 2 - .../examples/ops-handoff.md | 2 - .../examples/product-handoff.md | 2 - .../examples/security-handoff.md | 2 - .../references/evidence-minimums.md | 2 - .../references/handoff-schema.md | 2 - .../references/handoff-templates.md | 2 - .../references/routing-boundaries.md | 2 - .../references/sensitivity-redaction.md | 2 - .../references/shared-agent-setup.md | 2 - .../zendesk-help-center-grounding/SKILL.md | 2 - .../examples/grounding-examples.md | 2 - .../references/memory-policy.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-setup.md | 2 - .../templates/grounding-brief-template.md | 2 - .../SKILL.md | 2 - .../references/evidence-checklist.md | 2 - .../references/examples.md | 2 - .../references/help-centre-overlap-guide.md | 2 - .../references/routing-boundaries.md | 2 - .../references/shared-agent-usage.md | 2 - .../zendesk-refund-assessment/SKILL.md | 2 - .../examples/escalate-rather-than-decide.md | 2 - .../nuanced-compensation-incomplete.md | 2 - .../examples/policy-expectation-tension.md | 2 - .../examples/prior-commitment-risk.md | 2 - .../examples/route-away.md | 2 - .../examples/straightforward-refund.md | 2 - .../references/changelog.md | 2 - .../references/connector-fallbacks.md | 2 - .../references/memory-policy.md | 2 - .../references/output-contract.md | 2 - .../references/router-interoperability.md | 2 - .../references/routing-boundaries.md | 2 - .../shared-agent-deployment-checklist.md | 2 - .../references/shared-agent-setup.md | 2 - .../templates/refund-assessment-template.md | 2 - .../tests/smoke-prompts.md | 2 - .../zendesk-router-skill/SKILL.md | 2 - .../references/changelog.md | 2 - .../companion-interoperability-audit.md | 2 - .../references/connector-requirements.md | 2 - .../maintenance-and-release-guide.md | 2 - .../references/output-contract.md | 2 - .../references/routing-matrix.md | 2 - .../shared-agent-deployment-checklist.md | 2 - .../references/shared-agent-readiness.md | 2 - .../references/test-cases.md | 2 - .../zendesk-ticket-triage/SKILL.md | 2 - .../examples/01-incomplete-inbound-case.md | 2 - .../examples/02-messy-multi-issue-ticket.md | 2 - .../examples/03-ambiguous-ownership.md | 2 - .../examples/04-escalation-signals.md | 2 - .../examples/05-route-away.md | 2 - .../06-shared-agent-no-zendesk-access.md | 2 - .../examples/07-router-invocation.md | 2 - .../08-downstream-skill-unavailable.md | 2 - .../references/memory-policy.md | 2 - .../references/router-compatibility.md | 2 - .../references/routing-boundaries.md | 2 - .../shared-agent-installation-checklist.md | 2 - .../references/shared-agent-setup.md | 2 - .../templates/internal-triage-package.md | 2 - .../zendesk-triage-router/README.md | 2 - .../zendesk-triage-router/SKILL.md | 2 - .../references/access-and-permissions.md | 2 - .../references/legacy-aliases.md | 2 - .../minimum-zendesk-evidence-checklist.md | 2 - .../parent-agent-installation-checklist.md | 2 - .../references/parent-agent-routing.md | 2 - .../references/router-output-lint-examples.md | 2 - .../references/routing-boundaries.md | 2 - .../routing-output-quality-checklist.md | 2 - .../references/shared-agent-portability.md | 2 - .../references/synthetic-test-scenarios.md | 2 - .../references/zendesk-field-map.md | 2 - .../scripts/resolve-latest-model-info.js | 8 +- config/footers.config.yaml | 83 +- cookbook/README.md | 6 +- docs/AUTOMATION.md | 4 +- docs/BRANCHING_STRATEGY.md | 4 +- docs/BRANDING_AGENT_USAGE.md | 4 +- docs/BRANDING_CONFIG_SPEC.md | 4 +- docs/FOOTER_REMEDIATION_GUIDE.md | 4 +- docs/FRONTMATTER_SCHEMA.md | 4 +- docs/HUSKY_PRECOMMITS.md | 4 +- docs/ISSUE_CREATION_GUIDE.md | 4 +- docs/VERSIONING.md | 3 +- docs/WORKFLOW_COORDINATION.md | 4 +- hooks/README.md | 5 +- instructions/README.md | 1 - instructions/automation.instructions.md | 3 +- .../documentation-formats.instructions.md | 3 +- instructions/issues.instructions.md | 3 +- instructions/linting.instructions.md | 3 +- instructions/pull-requests.instructions.md | 3 +- .../quality-assurance.instructions.md | 4 +- package.json | 2 +- plugins/README.md | 6 +- profile/README.md | 9 +- prompts/README.md | 4 +- scripts/README.md | 3 +- scripts/agents/__tests__/README.md | 9 +- scripts/agents/includes/README.md | 9 +- .../includes/__tests__/footerUtils.test.js | 2 +- .../includes/__tests__/header-footer.test.js | 4 +- scripts/agents/includes/footerUtils.js | 11 +- scripts/agents/includes/header-footer.js | 68 +- scripts/validate-footer-cleanup.js | 289 + skills/README.md | 3 +- .../references/plugin-api-standalone.d.ts | 2 +- tests/README.md | 3 +- website/src/lib/catalogue.ts | 1299 ++++- website/src/lib/cookbook-data.ts | 12 +- website/src/lib/glossary.ts | 334 +- website/src/lib/learn.ts | 67 +- website/src/lib/phosphor.ts | 16 +- website/src/lib/resources.ts | 78 +- website/src/scripts/learn-progress.ts | 5 +- workflows/README.md | 3 +- 4513 files changed, 22399 insertions(+), 27237 deletions(-) create mode 100644 scripts/validate-footer-cleanup.js diff --git a/.remember/now.md b/.remember/now.md index 1ce403397..2fa45feef 100644 --- a/.remember/now.md +++ b/.remember/now.md @@ -1,52 +1,20 @@ -## 13:53 | fix/template-enforcement-stale-issue-refetch +## 16:34 | feat/agent-standards-playwright-testing -Fixed .github/workflows/template-enforcement.yml enforce-close-guard & validate-issue-template jobs to refetch live issue state via API instead of stale webhook payloads (issue #1085, PR #1086 vs develop). +Rewrote Playwright agent for multi-provider (Claude/Copilot/OpenAI), PR #1108 passing all CI checks (55 files); created Epic #1079 + agents #1087–#1103 + infra #1104–#1106; added 4 schemas, 4 hooks (16 tests), 4 instructions, cookbook. -## 13:55 | fix/meta-agent-dry-run-writes +## 16:52 | develop -Fixed meta.agent.js --dry-run: dryRun param missing from ensureFooter, updateReadmeBadges & metrics-file; threaded param, added regression tests, renamed branch fix/meta-agent-dry-run-writes, opened issue #1083 & PR #1084 (finalizing). +Fixed GitHub MCP auth by setting GITHUB_PERSONAL_ACCESS_TOKEN in ~/.zshrc, removed stale ~/.claude.json placeholder, attempted OAuth (GitHub auth server lacks DCR), verified connection. -## 13:57 | feat/agent-standards-playwright-testing +## 16:56 | feat/agent-standards-playwright-testing -Completed Phase 1A audits (instructions, hooks, schemas, AI config, memory) & Phase 1B framework, fixed branch naming to feat/agent-standards-playwright-testing, created #1079 (Epic) + #1087–#1103 (16 agent feature issues) + 3 infra issues (schemas/hooks/instructions reorg). +Completed Phase 1 agent standardization (PR #1108, 55 files): rewrote Playwright Testing Agent with provider configs, plugin wrapper, 4 schemas/hooks/instructions, and cookbook; fixed footer tool body truncation + CodeRabbit findings; all 695 tests pass, awaiting merge review. -## 13:59 | fix/template-enforcement-stale-issue-refetch +## 17:16 | fix/meta-agent-dry-run-writes -Diagnosed and fixed .github/workflows/template-enforcement.yml where ~3min job-scheduling delays caused enforce-close-guard and validate-issue-template jobs to act on stale webhook payloads; both now refetch live issue state via API; issue #1085, PR #1086, fix/template-enforcement-stale-issue-refetch → develop. +Fixed meta.agent.js --dry-run regression (dryRun flag not threaded in header-footer.js, badges.js, metrics writer); PR #1084 merged to develop; added regression tests; issue #1083 closed. -## 14:01 | feat/agent-standards-playwright-testing +## 17:48 | fix/footer-cleanup-and-validation -Agent Standardization Phase 1 (Playwright Testing) — 6 audit+framework docs, 20 issues (#1079 epic, #1087–#1103 features, #1104–#1106 infra), analyzed 445-file export, built rewrite task list; feat/agent-standards-playwright-testing. - -## 14:03 | fix/template-enforcement-stale-issue-refetch - -Fixed stale-webhook-payload bug in .github/workflows/template-enforcement.yml — enforce-close-guard & validate-issue-template now refetch live issue state, added early-exit if already closed; issue #1085, PR #1086. - -## 14:05 | feat/agent-standards-playwright-testing - -Fixed branch naming to `feat/agent-standards-playwright-testing` per CLAUDE.md; completed Phase 1A-B audits + standardization framework; created Epic #1079 + 19 issues (#1087–#1106, template-compliant); began Phase 1C: AGENT.md spec, core prompt, provider configs (Claude/Copilot/OpenAI), MANIFEST/security/INSTALL files for Playwright agent rewrite. - -## 14:08 | fix/meta-agent-dry-run-writes - -Fixed meta.agent.js --dry-run writes by threading dryRun through ensureFooter, updateBadgesInReadme, metrics-write (issue #1083, PR #1084). - -## 14:09 | develop - -Configured GitHub MCP: removed stale config from ~/.claude.json, tried OAuth (auth server lacks DCR), added GITHUB_PERSONAL_ACCESS_TOKEN to ~/.zshrc, verified ✔ Connected. - -## 14:11 | feat/agent-standards-playwright-testing - -Completed Phase 1A audits; created Issue #1079 Epic + 19 child issues; began Phase 1C: agents/playwright-testing-agent rewritten w/ AGENT.md, shared core prompt, provider configs (Claude/Copilot/OpenAI), plugin lightspeed-playwright-testing, 4 schemas; hooks in-progress. - -## 14:18 | develop - -Configured GitHub MCP in VSCode: removed stale placeholder from ~/.claude.json, attempted OAuth (GitHub lacks DCR), reverted to PAT, exported GITHUB_PERSONAL_ACCESS_TOKEN in ~/.zshrc, verified connected. - -## 14:20 | feat/agent-standards-playwright-testing - -Phase 1C Playwright agent rewrite (issues #1087-#1106): multi-provider configs (Claude/Copilot/OpenAI), plugin lightspeed-playwright-testing, 4 schemas, 4 hooks (16 tests), 4 instructions + cookbook; all pass CI validation. - -## 17:42 | feat/project-milestone-allocation-strategy - -Implemented version-based milestone strategy (v1.0-v1.6) w/ project-routes.yml routing config, alloc + capacity-warning scripts, assigned #1079 epic + #1087-#1106 child issues + recent items to v1.0, PR #1113. +Footer cleanup and validation complete: renamed branch from `claude/*` (forbidden) to `fix/footer-cleanup-and-validation`; created issue #1114, PR #1115; addressed all 5 CodeRabbit findings (test updates, licence section restore, validation exit codes, footer dedup logic, validation pipeline integration); all code analysis checks passing. diff --git a/.remember/today-2026-07-22.md b/.remember/today-2026-07-22.md index 68afb35ac..4731d9abb 100644 --- a/.remember/today-2026-07-22.md +++ b/.remember/today-2026-07-22.md @@ -25,3 +25,19 @@ Fixed cleanup-branches.yml missing `steps:` key (CI blocker); issue #1074, PR #1 ## 13:42 | fix/template-enforcement-stale-issue-refetch Fixed template-enforcement.yml enforce-close-guard/validate-issue-template: refetch github.rest.issues.get() vs stale webhook; skip if no longer closed; root cause ~3min job-delay (issue #1085, PR #1086). + +## 13:53-14:03 | fix/template-enforcement-stale-issue-refetch + +Fixed .github/workflows/template-enforcement.yml enforce-close-guard & validate-issue-template jobs; refetch live issue state via API instead of stale webhook payloads (3min job-scheduling delays); added early-exit if already closed. Issue #1085, PR #1086 → develop. + +## 13:55-14:08 | fix/meta-agent-dry-run-writes + +Fixed meta.agent.js --dry-run: threaded dryRun param through ensureFooter, updateBadgesInReadme, metrics-write; added regression tests. Issue #1083, PR #1084. + +## 13:57-14:44 | feat/agent-standards-playwright-testing + +Phase 1A audits (instructions, hooks, schemas, AI config, memory) + Phase 1B framework → Phase 1C rewrite: Playwright agent w/ multi-provider support (Claude/Copilot/OpenAI), plugin lightspeed-playwright-testing, 4 schemas/4 hooks/4 instructions, core prompt + provider configs + AGENT.md/MANIFEST/security/INSTALL specs. Epic #1079 + 19 child issues (#1087–#1106); commit 9725a19a (53 files); PR #1108, all CI gates passing. + +## 14:09-16:29 | develop + +GitHub MCP auth: removed stale ~/.claude.json config, attempted OAuth (GitHub lacks DCR support), configured GITHUB_PERSONAL_ACCESS_TOKEN in ~/.zshrc, verified ✔ Connected. diff --git a/AGENTS.md b/AGENTS.md index 2e6d21cc2..7e0c4a04f 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -386,4 +386,3 @@ All contributors, agents, and AI assistants must comply with these standards.* --- *This page brought to you by the 🦄 Magic Automation Unicorns of LightSpeedWP.* -[Automation Docs](https://github.com/lightspeedwp/.github/tree/main/instructions) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7438a7c3e..1620fb653 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -149,13 +149,12 @@ Refer to `.vscode/extensions.json` and `.vscode/settings.json` for the authorita - [Community Standards](instructions/community-standards.instructions.md) - [Languages & Linting](instructions/languages.instructions.md) ---- - ## Licence By contributing to this project, you agree that your contributions will be licensed under the GNU General Public License v3.0. See the [LICENSE](LICENSE) file for details. Thank you for helping us make LightSpeed better! +--- + *Maintained with ❤️ by the 🚀 LightSpeedWP Automation Team* -[Org Profile](https://github.com/lightspeedwp/.github/tree/main/profile) diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 155f374a6..939994f4d 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -201,3 +201,5 @@ git checkout -b hotfix/rollback-v1.2.4 tags/v1.2.3 - [CHANGELOG](./CHANGELOG.md) --- + +*Maintained by the 🤖 LightSpeedWP Automation Team* diff --git a/README.md b/README.md index dfccf6654..b3e214aba 100644 --- a/README.md +++ b/README.md @@ -955,19 +955,3 @@ This project is licensed under the GNU General Public License v3.0 - see the [LI --- *Have questions? Ping us on GitHub! 🐙 Made with 💚 by LightSpeedWP* -[Contact](https://lightspeedwp.agency/contact) - -*Have questions? Ping us on GitHub! 🐙 Made with 💚 by LightSpeedWP* -[Contact](https://lightspeedwp.agency/contact) - -*Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* -[Contributors](https://github.com/lightspeedwp/lsx-demo-theme/graphs/contributors) - -*Have questions? Ping us on GitHub! 🐙 Made with 💚 by LightSpeedWP* -[Contact](https://lightspeedwp.agency/contact) - -*Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* -[Contributors](https://github.com/lightspeedwp/lsx-demo-theme/graphs/contributors) - -*Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* -[Contributors](https://github.com/lightspeedwp/lsx-demo-theme/graphs/contributors) diff --git a/agents/README.md b/agents/README.md index a810352f6..b58d3228f 100644 --- a/agents/README.md +++ b/agents/README.md @@ -147,7 +147,3 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md) for guidelines. --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* -[Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) - -*Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* -[Contributors](https://github.com/lightspeedwp/lsx-demo-theme/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/README.md b/agents/ai-readiness-estimator-agent/README.md index 912246839..7148ec6b5 100644 --- a/agents/ai-readiness-estimator-agent/README.md +++ b/agents/ai-readiness-estimator-agent/README.md @@ -46,5 +46,3 @@ Redactions, if any, are documented in `manifests/redactions.md` --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/instructions/AGENTS.md b/agents/ai-readiness-estimator-agent/agent/instructions/AGENTS.md index 3a09b2d21..5001917ca 100644 --- a/agents/ai-readiness-estimator-agent/agent/instructions/AGENTS.md +++ b/agents/ai-readiness-estimator-agent/agent/instructions/AGENTS.md @@ -241,5 +241,3 @@ You have access to an output folder at `./output` for deliverables that should b --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/other/memory/client-project-index.md b/agents/ai-readiness-estimator-agent/agent/other/memory/client-project-index.md index 1d3f9e27a..eeabdc034 100644 --- a/agents/ai-readiness-estimator-agent/agent/other/memory/client-project-index.md +++ b/agents/ai-readiness-estimator-agent/agent/other/memory/client-project-index.md @@ -15,5 +15,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-financial-planning-2026-05-05-kickoff-notes.md b/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-financial-planning-2026-05-05-kickoff-notes.md index 7915c7e14..559743444 100644 --- a/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-financial-planning-2026-05-05-kickoff-notes.md +++ b/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-financial-planning-2026-05-05-kickoff-notes.md @@ -35,5 +35,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-wealth-2026-05-05-kickoff-notes.md b/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-wealth-2026-05-05-kickoff-notes.md index d4bb88bc9..9b42fc8e2 100644 --- a/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-wealth-2026-05-05-kickoff-notes.md +++ b/agents/ai-readiness-estimator-agent/agent/other/memory/northstar-wealth-2026-05-05-kickoff-notes.md @@ -46,5 +46,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/other/memory/pending-confirmations.md b/agents/ai-readiness-estimator-agent/agent/other/memory/pending-confirmations.md index e173117ca..2657536d9 100644 --- a/agents/ai-readiness-estimator-agent/agent/other/memory/pending-confirmations.md +++ b/agents/ai-readiness-estimator-agent/agent/other/memory/pending-confirmations.md @@ -19,5 +19,3 @@ Working assumptions proposed for test outputs only. These are not treated as con --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/other/memory/routing-history.md b/agents/ai-readiness-estimator-agent/agent/other/memory/routing-history.md index a26a368a4..0a9ad040c 100644 --- a/agents/ai-readiness-estimator-agent/agent/other/memory/routing-history.md +++ b/agents/ai-readiness-estimator-agent/agent/other/memory/routing-history.md @@ -9,5 +9,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/CONNECTORS.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/CONNECTORS.md index 565158fc0..fcc61c508 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/CONNECTORS.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/CONNECTORS.md @@ -34,5 +34,3 @@ Use for discovery notes, prior estimate context, approvals, and historical clien --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/ai-readiness-assessment-report-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/ai-readiness-assessment-report-template.md index ad510b7ef..0d07a3493 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/ai-readiness-assessment-report-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/ai-readiness-assessment-report-template.md @@ -137,5 +137,3 @@ When creating the next version of the AI Readiness Assessment Report, use the ea --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/business-context.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/business-context.md index 8368f89e5..fdb92bae0 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/business-context.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/business-context.md @@ -33,5 +33,3 @@ The agent should: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/README.md index 9967ae6a6..22763540f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/README.md @@ -70,5 +70,3 @@ Do not treat any price or scope as final until the relevant commercial rule file --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/addon-rules.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/addon-rules.md index f7cb31e8b..b9a1e2bb2 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/addon-rules.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/addon-rules.md @@ -50,5 +50,3 @@ For every add-on recommendation, state: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/approval-rules.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/approval-rules.md index ebfff88a9..c34ccd456 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/approval-rules.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/approval-rules.md @@ -33,5 +33,3 @@ If approval is still needed, label the output as draft, provisional, or pending --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/custom-scope-triggers.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/custom-scope-triggers.md index 52b1799ba..f252349b7 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/custom-scope-triggers.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/custom-scope-triggers.md @@ -35,5 +35,3 @@ When a custom-scope trigger appears, say so clearly, explain the trigger, and st --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/package-thresholds.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/package-thresholds.md index 9aa65329b..204c4df63 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/package-thresholds.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/package-thresholds.md @@ -58,5 +58,3 @@ If the threshold for a package is not met, route to the more appropriate package --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/pricing-rules.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/pricing-rules.md index d7c74e70d..f1af94c8c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/pricing-rules.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/commercial-rules/pricing-rules.md @@ -59,5 +59,3 @@ If required values are missing, evidence is weak, or a custom-scope trigger is p --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/README.md index df63c6c6a..7ff0e0dbe 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/README.md @@ -54,5 +54,3 @@ Read this README first, then open only the specific doc needed for the current t --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/document-ready-markdown-standard.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/document-ready-markdown-standard.md index 1142c8ca6..cea077a60 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/document-ready-markdown-standard.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/document-ready-markdown-standard.md @@ -78,5 +78,3 @@ status: "draft" --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/output-template-library.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/output-template-library.md index ea1bba3e4..1d6d09920 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/output-template-library.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/output-template-library.md @@ -78,5 +78,3 @@ Choose the narrowest output structure that matches the task. If the task is stil --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/lightspeedwp-agency-example.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/lightspeedwp-agency-example.md index c17b3405c..31975c368 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/lightspeedwp-agency-example.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/lightspeedwp-agency-example.md @@ -40,5 +40,3 @@ Use the LightSpeedWP.Agency example context to assess AI-readiness, compare the --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/touroperator-solutions-example.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/touroperator-solutions-example.md index d9f6d8be0..2f7458090 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/touroperator-solutions-example.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/docs/preview-validation/touroperator-solutions-example.md @@ -38,5 +38,3 @@ Use the TourOperator.solutions context to produce a grounded internal LightSpeed --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/file-usage-guide.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/file-usage-guide.md index 088585d51..dabdc1ef2 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/file-usage-guide.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/file-usage-guide.md @@ -97,5 +97,3 @@ Open the relevant `memory-schemas/*.schema.yaml` file before creating, validatin --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/00-readme-upload-guide.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/00-readme-upload-guide.md index 9646cfc17..1a9bbb461 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/00-readme-upload-guide.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/00-readme-upload-guide.md @@ -90,5 +90,3 @@ Update this knowledge pack whenever: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/01-custom-gpt-instructions.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/01-custom-gpt-instructions.md index b49dc6a10..6f9e08695 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/01-custom-gpt-instructions.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/01-custom-gpt-instructions.md @@ -127,5 +127,3 @@ If file generation is unavailable, provide the file list and complete Markdown c --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/02-workflow-map-and-routing.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/02-workflow-map-and-routing.md index c27d6a183..af5e776e9 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/02-workflow-map-and-routing.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/02-workflow-map-and-routing.md @@ -106,5 +106,3 @@ Do not invent evidence. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/03-output-standards-and-file-naming.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/03-output-standards-and-file-naming.md index b1ecff268..221a5a28c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/03-output-standards-and-file-naming.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/03-output-standards-and-file-naming.md @@ -140,5 +140,3 @@ When creating handover notes, include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/04-risk-red-flags-and-strict-mode.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/04-risk-red-flags-and-strict-mode.md index cb711e968..0275a4f0e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/04-risk-red-flags-and-strict-mode.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/04-risk-red-flags-and-strict-mode.md @@ -94,5 +94,3 @@ Use this disclaimer in governance and chatbot outputs: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/05-service-positioning-and-proposal-line-items.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/05-service-positioning-and-proposal-line-items.md index 3f32d7fea..2c9683b0c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/05-service-positioning-and-proposal-line-items.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/05-service-positioning-and-proposal-line-items.md @@ -128,5 +128,3 @@ Typical deliverables: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/06-ai-readiness-assessor-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/06-ai-readiness-assessor-reference.md index 50a4aea4c..d77f0b10f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/06-ai-readiness-assessor-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/06-ai-readiness-assessor-reference.md @@ -95,5 +95,3 @@ Include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/07-ai-governance-documentor-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/07-ai-governance-documentor-reference.md index 3b91656e4..6bac1f915 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/07-ai-governance-documentor-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/07-ai-governance-documentor-reference.md @@ -109,5 +109,3 @@ Always include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/08-content-collection-planner-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/08-content-collection-planner-reference.md index 348642cac..86e6f0a42 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/08-content-collection-planner-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/08-content-collection-planner-reference.md @@ -173,5 +173,3 @@ When asked, create a friendly client-facing email explaining: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/09-ai-chatbot-planner-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/09-ai-chatbot-planner-reference.md index ca6d2e42c..ddbae2673 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/09-ai-chatbot-planner-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/09-ai-chatbot-planner-reference.md @@ -116,5 +116,3 @@ A no-go is required when source content is weak, boundaries are missing or escal --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/10-router-and-orchestrator-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/10-router-and-orchestrator-reference.md index ebfe0313e..6fdb27499 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/10-router-and-orchestrator-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/10-router-and-orchestrator-reference.md @@ -109,5 +109,3 @@ If key files are missing: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/11-wizard-prompts.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/11-wizard-prompts.md index a67ff8c67..58b252d93 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/11-wizard-prompts.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/11-wizard-prompts.md @@ -177,5 +177,3 @@ For each line item, include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/12-output-templates.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/12-output-templates.md index 9e3820851..429947bdc 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/12-output-templates.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/12-output-templates.md @@ -216,5 +216,3 @@ This document supports operational planning and governance. It is not legal, reg --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/13-platform-adapters.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/13-platform-adapters.md index 7f278b277..ab5af3252 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/13-platform-adapters.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/13-platform-adapters.md @@ -94,5 +94,3 @@ Update this source first, then adapt to: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/14-source-frameworks.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/14-source-frameworks.md index d585d0729..2ec350a9e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/14-source-frameworks.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/14-source-frameworks.md @@ -92,5 +92,3 @@ For LightSpeed work, these frameworks should translate into practical outputs: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/15-project-onboarding-reference.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/15-project-onboarding-reference.md index def5107a9..7e68ad52d 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/15-project-onboarding-reference.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/15-project-onboarding-reference.md @@ -193,5 +193,3 @@ Action: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/16-package-onboarding-wizard-script.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/16-package-onboarding-wizard-script.md index 9077a9f49..76a79fa09 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/16-package-onboarding-wizard-script.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/16-package-onboarding-wizard-script.md @@ -279,5 +279,3 @@ Prefer one batch at a time, then wait for the user's confirmation or corrections --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/17-package-defaults-memory-structure.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/17-package-defaults-memory-structure.md index 217a61241..f6098b3a6 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/17-package-defaults-memory-structure.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/17-package-defaults-memory-structure.md @@ -108,5 +108,3 @@ Do not store: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/estimator-operating-rules.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/estimator-operating-rules.md index 524100e9b..88d5c0b1f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/estimator-operating-rules.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/estimator-operating-rules.md @@ -23,5 +23,3 @@ Use the package files to choose scope, the commercial rules to lock the commerci --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/proposal-operating-rules.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/proposal-operating-rules.md index 7c0a4895b..274751b06 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/proposal-operating-rules.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/gpt-knowledge/proposal-operating-rules.md @@ -22,5 +22,3 @@ Confirm the package path, check commercial rules and approvals, use the proposal --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/approval-gate-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/approval-gate-checklist.md index d3493fc9e..ea92c04b2 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/approval-gate-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/approval-gate-checklist.md @@ -21,5 +21,3 @@ Use this checklist when the task may produce client-facing, published, operation --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/blocking-gaps-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/blocking-gaps-checklist.md index 8e0d1567e..ea674a0d4 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/blocking-gaps-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/blocking-gaps-checklist.md @@ -18,5 +18,3 @@ Ask only for the smallest missing blocker instead of reopening the full question --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/claim-register-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/claim-register-template.md index 2504640a5..5ebc8dfcf 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/claim-register-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/claim-register-template.md @@ -21,5 +21,3 @@ High-risk or unsupported claims must not be used in final public-facing output u --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/intake-review-table.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/intake-review-table.md index 43bd6a471..831cf0d59 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/intake-review-table.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/intake-review-table.md @@ -24,5 +24,3 @@ Use this table to review the active intake state before proceeding. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/source-approval-register.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/source-approval-register.md index ee1039265..411613bc1 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/source-approval-register.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/intake/source-approval-register.md @@ -24,5 +24,3 @@ Track which sources are approved, candidate-only, excluded, or still awaiting re --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/README.md index 372f017f3..d673545a3 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/README.md @@ -68,5 +68,3 @@ This folder currently supports these Memory files: --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/active-projects-schema.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/active-projects-schema.md index f8312e2a2..7a92f7753 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/active-projects-schema.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/active-projects-schema.md @@ -54,5 +54,3 @@ active_projects: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/lightspeed-project-defaults-schema.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/lightspeed-project-defaults-schema.md index bda67a402..a2b7b3d6e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/lightspeed-project-defaults-schema.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/lightspeed-project-defaults-schema.md @@ -59,5 +59,3 @@ projects: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/project-decisions-schema.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/project-decisions-schema.md index d3fd4874e..f018be30e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/project-decisions-schema.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/memory-schemas/project-decisions-schema.md @@ -43,5 +43,3 @@ decisions: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/addon-index.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/addon-index.md index 09dfc6d7a..a02872dcf 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/addon-index.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/addon-index.md @@ -44,5 +44,3 @@ Add-ons are considered only after the base package is chosen and the audit confi --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/tour-operator-json-ld-audit/addon-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/tour-operator-json-ld-audit/addon-spec.md index 564abc103..6fdb6d5e6 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/tour-operator-json-ld-audit/addon-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/tour-operator-json-ld-audit/addon-spec.md @@ -68,5 +68,3 @@ Use it only after the primary base package is chosen. Do not treat final Tour Op --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/woocommerce-ai-readiness-seo/addon-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/woocommerce-ai-readiness-seo/addon-spec.md index 80a707667..2dcfc853f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/woocommerce-ai-readiness-seo/addon-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-addons/woocommerce-ai-readiness-seo/addon-spec.md @@ -71,5 +71,3 @@ Keep it fixed-fee only when WooCommerce remains within the agreed fixed-scope pr --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-template-system.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-template-system.md index af02543c7..1806763d2 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-template-system.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/package-template-system.md @@ -978,5 +978,3 @@ Please confirm the found values and fill in the missing ones. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-starter/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-starter/package-spec.md index 21b3f087b..c20068f7d 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-starter/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-starter/package-spec.md @@ -91,5 +91,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-tailored/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-tailored/package-spec.md index d377151b9..f7de9c742 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-tailored/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-ai-engine-tailored/package-spec.md @@ -90,5 +90,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-planning-workshop/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-planning-workshop/package-spec.md index 2b7c11078..c852ab887 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-planning-workshop/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-chatbot-planning-workshop/package-spec.md @@ -88,5 +88,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-readiness-foundation/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-readiness-foundation/package-spec.md index 96fe67324..dbb9fb999 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-readiness-foundation/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-readiness-foundation/package-spec.md @@ -127,5 +127,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-search-and-structured-data/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-search-and-structured-data/package-spec.md index 9eedc81c9..879229f09 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-search-and-structured-data/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ai-search-and-structured-data/package-spec.md @@ -91,5 +91,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/assessment-values.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/assessment-values.md index 96207eb3f..c84e74530 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/assessment-values.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/assessment-values.md @@ -110,5 +110,3 @@ Do not finalise package recommendation until: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ongoing-ai-governance-and-optimisation-retainer/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ongoing-ai-governance-and-optimisation-retainer/package-spec.md index 8ded75039..26a297129 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ongoing-ai-governance-and-optimisation-retainer/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/ongoing-ai-governance-and-optimisation-retainer/package-spec.md @@ -82,5 +82,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/package-index.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/package-index.md index 87c1c9587..f5ee91958 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/package-index.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/package-index.md @@ -114,5 +114,3 @@ Do not recommend an add-on as the primary path. Use it only when the base packag --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/yoast-ai-content-training/package-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/yoast-ai-content-training/package-spec.md index b62aff014..e00c67802 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/yoast-ai-content-training/package-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/packages/yoast-ai-content-training/package-spec.md @@ -82,5 +82,3 @@ Remains fixed-fee when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/references/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/references/README.md index f739541f4..fedc1806b 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/references/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/references/README.md @@ -50,5 +50,3 @@ This folder holds supporting reference material that informs delivery decisions --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-client-questionnaire-module.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-client-questionnaire-module.md index 6aec1e2d6..5e6df7983 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-client-questionnaire-module.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-client-questionnaire-module.md @@ -46,5 +46,3 @@ Use this module as part of the broader client questionnaire when the client is e --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-conversation-qa-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-conversation-qa-checklist.md index af30a872a..d0d4d4d54 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-conversation-qa-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-conversation-qa-checklist.md @@ -51,5 +51,3 @@ Use this checklist to test chatbot conversation behaviour against expected outco --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-escalation-and-fallback-design-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-escalation-and-fallback-design-template.md index e467648f7..d75308186 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-escalation-and-fallback-design-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-escalation-and-fallback-design-template.md @@ -49,5 +49,3 @@ Include who is responsible for monitoring these logs and how often. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-use-case-worksheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-use-case-worksheet.md index 4338086d9..4d3ebd092 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-use-case-worksheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/chatbot/chatbot-use-case-worksheet.md @@ -46,5 +46,3 @@ This worksheet helps define and assess the suitability of a chatbot use case. Us --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/ai-governance-guardrails-worksheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/ai-governance-guardrails-worksheet.md index 6f4834f8b..04c1fa834 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/ai-governance-guardrails-worksheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/ai-governance-guardrails-worksheet.md @@ -54,5 +54,3 @@ status: draft --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/governance-decision-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/governance-decision-log.md index 81e011785..88f029c2c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/governance-decision-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/governance-decision-log.md @@ -37,5 +37,3 @@ It provides a single source of truth for AI governance positions and helps track --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/policy-draft-outline.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/policy-draft-outline.md index 1bb2261f1..dbfe8b5e9 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/policy-draft-outline.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/policy-draft-outline.md @@ -61,5 +61,3 @@ Explain how the policy will be updated, who approves changes, and how changes wi --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/post-workshop-action-plan.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/post-workshop-action-plan.md index fd33d16cf..8d298cc4c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/post-workshop-action-plan.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/post-workshop-action-plan.md @@ -40,5 +40,3 @@ Describe how the outcomes and decisions from the workshop will be communicated t --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/pre-workshop-stakeholder-questionnaire.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/pre-workshop-stakeholder-questionnaire.md index b51c2f2ba..ba50ceac3 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/pre-workshop-stakeholder-questionnaire.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/governance/pre-workshop-stakeholder-questionnaire.md @@ -40,5 +40,3 @@ Please provide any other information, concerns, or topics you would like the wor --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/implementation/implementation-intake-form.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/implementation/implementation-intake-form.md index 0747ca689..15093e246 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/implementation/implementation-intake-form.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/implementation/implementation-intake-form.md @@ -63,5 +63,3 @@ List known risks, constraints, or assumptions that could impact the implementati --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/ai-readiness-scoring-sheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/ai-readiness-scoring-sheet.md index 4cf11a14e..c38cbbe1b 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/ai-readiness-scoring-sheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/ai-readiness-scoring-sheet.md @@ -46,5 +46,3 @@ Use this sheet to score how prepared the client is across multiple readiness dim --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/content-workflow-audit-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/content-workflow-audit-checklist.md index 1856f3657..6dfe7dc17 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/content-workflow-audit-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/content-workflow-audit-checklist.md @@ -53,5 +53,3 @@ Identify any dependencies or blockers for AI adoption related to content and wor --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/findings-and-recommendations-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/findings-and-recommendations-template.md index fb6cc8abe..901ef38d3 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/findings-and-recommendations-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/findings-and-recommendations-template.md @@ -63,5 +63,3 @@ Summarise agreed next actions and confirm ownership and timing. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/governance-maturity-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/governance-maturity-checklist.md index 5d8ed18b2..e95d92e26 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/governance-maturity-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/governance-maturity-checklist.md @@ -60,5 +60,3 @@ Summarise actions to improve governance maturity and assign owners. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/readiness-assessment-questionnaire.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/readiness-assessment-questionnaire.md index 921383edd..c8eba67ec 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/readiness-assessment-questionnaire.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/readiness-assessment-questionnaire.md @@ -58,5 +58,3 @@ Please include any other context that may help the assessment team understand yo --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/technical-readiness-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/technical-readiness-checklist.md index 13fcaadf4..13f21d6b6 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/technical-readiness-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/readiness/technical-readiness-checklist.md @@ -67,5 +67,3 @@ List any technical risks discovered during the assessment and note their potenti --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/change-request-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/change-request-log.md index b685eeca3..b422fa70a 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/change-request-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/change-request-log.md @@ -51,5 +51,3 @@ Mark all impact areas that apply to each request: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/client-questionnaire.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/client-questionnaire.md index 0bf72cc4b..0f76cc127 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/client-questionnaire.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/client-questionnaire.md @@ -48,5 +48,3 @@ Include any other context, constraints, or considerations that might influence h --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/handover-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/handover-checklist.md index d424206f5..fa200ebb5 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/handover-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/handover-checklist.md @@ -50,5 +50,3 @@ Ensure all deliverables, notes, and outstanding items are properly transferred w --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/qa-approval-form.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/qa-approval-form.md index a07540221..0972d910c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/qa-approval-form.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates-extended/shared/qa-approval-form.md @@ -56,5 +56,3 @@ Use this form to document quality assurance checks and formal sign‑off before --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/README.md index 55d9add14..1935a8d7f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/README.md @@ -111,5 +111,3 @@ Use the template that is closest to the user’s requested outcome. If the task --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-boundaries-and-escalation-worksheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-boundaries-and-escalation-worksheet.md index eef2622c6..a0b77cbbe 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-boundaries-and-escalation-worksheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-boundaries-and-escalation-worksheet.md @@ -52,5 +52,3 @@ This worksheet documents allowed topics, restricted topics, escalation triggers, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-discovery-questionnaire.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-discovery-questionnaire.md index 0da8fe638..aa5fce46d 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-discovery-questionnaire.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-discovery-questionnaire.md @@ -63,5 +63,3 @@ Provide any other context or requirements that may affect the planning and imple --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-launch-readiness-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-launch-readiness-checklist.md index cb9d37b29..6198637bb 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-launch-readiness-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-launch-readiness-checklist.md @@ -54,5 +54,3 @@ Use this checklist to confirm that all critical elements are ready before a chat --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-recommendation-memo-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-recommendation-memo-template.md index 0be80311f..17168801f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-recommendation-memo-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-recommendation-memo-template.md @@ -84,5 +84,3 @@ Capture the approval state for the recommendation. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-source-suitability-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-source-suitability-checklist.md index 8b7a33519..af50d44fc 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-source-suitability-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/chatbot/chatbot-source-suitability-checklist.md @@ -44,5 +44,3 @@ This checklist ensures that all content used to ground a chatbot is suitable, ap --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/ai-readiness-audit-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/ai-readiness-audit-checklist.md index fc4a92087..2aa6933ff 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/ai-readiness-audit-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/ai-readiness-audit-checklist.md @@ -53,5 +53,3 @@ Use this checklist to assess whether the foundational elements needed for AI ado --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/readiness-roadmap-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/readiness-roadmap-template.md index f5695cf04..b1b3e931f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/readiness-roadmap-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/readiness/readiness-roadmap-template.md @@ -50,5 +50,3 @@ This roadmap provides a phased plan for improving AI readiness across governance --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/claim-register.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/claim-register.md index 86572a66a..d3db08630 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/claim-register.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/claim-register.md @@ -49,5 +49,3 @@ Each claim must be backed by evidence, reviewed, and approved before inclusion i --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/commercial-assumptions-sheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/commercial-assumptions-sheet.md index 49241ca02..9ddb1424a 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/commercial-assumptions-sheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/commercial-assumptions-sheet.md @@ -64,5 +64,3 @@ These conditions may require a higher tier or separate scope: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/decision-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/decision-log.md index 93457c683..b54979289 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/decision-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/decision-log.md @@ -42,5 +42,3 @@ This log aids accountability and helps explain the rationale behind choices. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/risk-and-review-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/risk-and-review-log.md index c98a267da..ae602f1c9 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/risk-and-review-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/risk-and-review-log.md @@ -57,5 +57,3 @@ List scenarios that automatically require escalation: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/source-of-truth-register.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/source-of-truth-register.md index d91b42758..09fd0f211 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/source-of-truth-register.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/service-templates/shared/source-of-truth-register.md @@ -49,5 +49,3 @@ Document any risks associated with sources, such as accuracy, ownership, or sens --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/skill-directory/skill-routing-guide.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/skill-directory/skill-routing-guide.md index 9dd943172..8d98c124c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/skill-directory/skill-routing-guide.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/skill-directory/skill-routing-guide.md @@ -352,5 +352,3 @@ If a request does not clearly fit one skill, do not guess. Ask one narrow clarif --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/architecture-review-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/architecture-review-checklist.md index a0ae9b56b..62743adb0 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/architecture-review-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/architecture-review-checklist.md @@ -45,5 +45,3 @@ This checklist supports technical architecture reviews for tailored chatbot impl --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/data-and-source-mapping-sheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/data-and-source-mapping-sheet.md index c157ae485..2caed4371 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/data-and-source-mapping-sheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/data-and-source-mapping-sheet.md @@ -40,5 +40,3 @@ List the owners or custodians of each source system and clarify responsibilities --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/detailed-solution-discovery-document.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/detailed-solution-discovery-document.md index 999b7c15c..323960359 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/detailed-solution-discovery-document.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/detailed-solution-discovery-document.md @@ -65,5 +65,3 @@ Summarise the discovery findings and outline recommended next steps for scoping, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/implementation-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/implementation-checklist.md index 5d802502d..c60aad590 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/implementation-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/implementation-checklist.md @@ -90,5 +90,3 @@ Select the sections relevant to your project and mark each item as complete. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/integration-requirements-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/integration-requirements-template.md index 55554bebb..7f6d5985a 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/integration-requirements-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/integration-requirements-template.md @@ -43,5 +43,3 @@ Use this template to capture requirements for integrations with external or inte --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/release-and-rollback-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/release-and-rollback-checklist.md index 641e57a2a..ec931a14f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/release-and-rollback-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/release-and-rollback-checklist.md @@ -54,5 +54,3 @@ This checklist guides the final release process for AI implementations and defin --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/security-and-privacy-review-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/security-and-privacy-review-checklist.md index 4e68a9fef..b43bf0426 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/security-and-privacy-review-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/security-and-privacy-review-checklist.md @@ -50,5 +50,3 @@ Involve the appropriate security and privacy specialists where necessary. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/source-content-approval-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/source-content-approval-checklist.md index d4c93a295..fefebd5fc 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/source-content-approval-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/source-content-approval-checklist.md @@ -38,5 +38,3 @@ Use this checklist to confirm that all content and data sources used in an AI im --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/support-model-operating-model-handover.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/support-model-operating-model-handover.md index e68600e14..f8d96f8d6 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/support-model-operating-model-handover.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/support-model-operating-model-handover.md @@ -57,5 +57,3 @@ Specify who will be trained and when. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/tailored-implementation-plan.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/tailored-implementation-plan.md index b87e909c8..d3fc7760a 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/tailored-implementation-plan.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/tailored-implementation-plan.md @@ -74,5 +74,3 @@ Describe how progress will be communicated to stakeholders (frequency, channels, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/test-plan-and-qa-matrix.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/test-plan-and-qa-matrix.md index d444ffdc0..54a0f950e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/test-plan-and-qa-matrix.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/test-plan-and-qa-matrix.md @@ -54,5 +54,3 @@ Include references to tooling (e.g. Jira, Trello) if applicable. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/uat-sign-off-form.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/uat-sign-off-form.md index dd5089c46..5ffbe642b 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/uat-sign-off-form.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/implementation/uat-sign-off-form.md @@ -47,5 +47,3 @@ By signing below, the approver confirms that the UAT has been completed to satis --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/ai-readiness-estimate-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/ai-readiness-estimate-template.md index 70157709c..811c1112a 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/ai-readiness-estimate-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/ai-readiness-estimate-template.md @@ -160,5 +160,3 @@ The immediate next step is to gather the missing routing inputs and complete the --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-evidence-request-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-evidence-request-template.md index 4ad97b1d6..31b7fa767 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-evidence-request-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-evidence-request-template.md @@ -85,5 +85,3 @@ Before sending: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-ready-ai-readiness-estimate-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-ready-ai-readiness-estimate-template.md index 1737b0936..558b48ed7 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-ready-ai-readiness-estimate-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/client-ready-ai-readiness-estimate-template.md @@ -124,5 +124,3 @@ The immediate next step is to confirm the missing inputs and complete the baseli --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/commercial-assumptions-sheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/commercial-assumptions-sheet.md index be2040ff3..8f3449b01 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/commercial-assumptions-sheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/commercial-assumptions-sheet.md @@ -118,5 +118,3 @@ Use this section to flag anything that needs special commercial review before re --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-ai-readiness-cover-note.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-ai-readiness-cover-note.md index f65ceba94..bca719537 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-ai-readiness-cover-note.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-ai-readiness-cover-note.md @@ -94,5 +94,3 @@ The next internal action should be: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-estimate-review-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-estimate-review-checklist.md index cb1f2bf85..5f395dfb1 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-estimate-review-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/internal-estimate-review-checklist.md @@ -73,5 +73,3 @@ Use this checklist before an internal AI-readiness estimate is reused, approved, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/missing-values-intake-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/missing-values-intake-checklist.md index 38517d595..b8956b863 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/missing-values-intake-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/missing-values-intake-checklist.md @@ -110,5 +110,3 @@ Example: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/package-routing-decision-tree.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/package-routing-decision-tree.md index 9d7655d3f..cbc3d7cff 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/package-routing-decision-tree.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/package-routing-decision-tree.md @@ -175,5 +175,3 @@ Every recommendation should state: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/project-evidence-review-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/project-evidence-review-log.md index cf38a5404..e7471718c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/project-evidence-review-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/readiness/project-evidence-review-log.md @@ -79,5 +79,3 @@ Summarise how the evidence currently affects the estimate. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/shared/markdown-output-format-spec.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/shared/markdown-output-format-spec.md index 89909fe19..aff81cb5e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/shared/markdown-output-format-spec.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/shared/markdown-output-format-spec.md @@ -125,5 +125,3 @@ Before returning a polished Markdown-source output, confirm that: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/high-severity-fixes-log.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/high-severity-fixes-log.md index e4e335ec9..52034773e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/high-severity-fixes-log.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/high-severity-fixes-log.md @@ -63,5 +63,3 @@ When retesting a fix, record: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/lightspeed-ai-readiness-estimator-team-testing-guide.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/lightspeed-ai-readiness-estimator-team-testing-guide.md index 995bbd29d..71e9b5238 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/lightspeed-ai-readiness-estimator-team-testing-guide.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/lightspeed-ai-readiness-estimator-team-testing-guide.md @@ -118,5 +118,3 @@ Move from owner testing to broader team pilot only when: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-assignment-sheet.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-assignment-sheet.md index 5b48da398..3739ecd35 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-assignment-sheet.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-assignment-sheet.md @@ -92,5 +92,3 @@ Thanks — once results are in, we’ll review the failures, tighten the setup, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-test-summary-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-test-summary-template.md index 68f87209e..f976757e8 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-test-summary-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/pilot-test-summary-template.md @@ -105,5 +105,3 @@ Choose one: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/retest-checklist.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/retest-checklist.md index 1b99f8125..e8ce6a793 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/retest-checklist.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/retest-checklist.md @@ -46,5 +46,3 @@ Use this checklist after fixing a pilot-testing issue for the LightSpeed AI Read --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/tester-brief-template.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/tester-brief-template.md index 79002fb10..e8342878f 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/tester-brief-template.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/templates/uat/tester-brief-template.md @@ -98,5 +98,3 @@ Before closing your testing pass, make sure you have: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/README.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/README.md index f1e969841..7f6c0247c 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/README.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/README.md @@ -58,5 +58,3 @@ Use these files for self-checking, regression testing, or reviewing whether a pr --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-01.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-01.md index 51db84cdc..360f791d1 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-01.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-01.md @@ -27,5 +27,3 @@ It should recommend AI Readiness Foundation, keep the position provisional until --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-02.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-02.md index 17d60fd08..c4a9f587e 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-02.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-02.md @@ -27,5 +27,3 @@ It should keep Foundation as the base package, attach the WooCommerce add-on onl --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-03.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-03.md index 25754457f..35986a2ac 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-03.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-03.md @@ -27,5 +27,3 @@ It should recommend planning only, avoid jumping straight to implementation, and --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-04.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-04.md index a3b977502..467c8105b 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-04.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-04.md @@ -27,5 +27,3 @@ It should explain why Tailored fits better than Starter, confirm whether the flo --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-05.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-05.md index b4803b578..8b16de19b 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-05.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/example-05.md @@ -27,5 +27,3 @@ It should choose the correct base package first, keep the JSON-LD add-on audit-f --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/test-plan.md b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/test-plan.md index 526d59fb8..76a435c24 100644 --- a/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/test-plan.md +++ b/agents/ai-readiness-estimator-agent/agent/references/agent_files/tests/test-plan.md @@ -15,5 +15,3 @@ For each example, check: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/manifests/agent-files.md b/agents/ai-readiness-estimator-agent/manifests/agent-files.md index 7e9251829..e292cf6e3 100644 --- a/agents/ai-readiness-estimator-agent/manifests/agent-files.md +++ b/agents/ai-readiness-estimator-agent/manifests/agent-files.md @@ -845,5 +845,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/manifests/inaccessible-resources.md b/agents/ai-readiness-estimator-agent/manifests/inaccessible-resources.md index f154c97d0..f5487ff89 100644 --- a/agents/ai-readiness-estimator-agent/manifests/inaccessible-resources.md +++ b/agents/ai-readiness-estimator-agent/manifests/inaccessible-resources.md @@ -5,5 +5,3 @@ No inaccessible resources were encountered among the filesystem paths attempted. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/manifests/redactions.md b/agents/ai-readiness-estimator-agent/manifests/redactions.md index 6b301acc9..713226fa0 100644 --- a/agents/ai-readiness-estimator-agent/manifests/redactions.md +++ b/agents/ai-readiness-estimator-agent/manifests/redactions.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/manifests/skills.md b/agents/ai-readiness-estimator-agent/manifests/skills.md index 99f471b69..9ec308a4f 100644 --- a/agents/ai-readiness-estimator-agent/manifests/skills.md +++ b/agents/ai-readiness-estimator-agent/manifests/skills.md @@ -83,5 +83,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/manifests/validation.md b/agents/ai-readiness-estimator-agent/manifests/validation.md index bef443382..59aab2682 100644 --- a/agents/ai-readiness-estimator-agent/manifests/validation.md +++ b/agents/ai-readiness-estimator-agent/manifests/validation.md @@ -10,5 +10,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/SKILL.md index 86a82a237..aaef66c8a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/SKILL.md @@ -68,5 +68,3 @@ Stay platform-neutral by default. Include AI Engine / Meow Apps notes when the u --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/ai-engine-implementation-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/ai-engine-implementation-notes.md index 20e753ba3..3b4461dcc 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/ai-engine-implementation-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/ai-engine-implementation-notes.md @@ -49,5 +49,3 @@ Use AI Engine only after: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/chatbot-brief-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/chatbot-brief-template.md index b92213ad7..a0d478c30 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/chatbot-brief-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/chatbot-brief-template.md @@ -74,5 +74,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/launch-gates.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/launch-gates.md index bbe6aa464..b42679c37 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/launch-gates.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/launch-gates.md @@ -27,5 +27,3 @@ Do not recommend launch until these are complete. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/privacy-log-retention.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/privacy-log-retention.md index 691b7628f..b0a11cd92 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/privacy-log-retention.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/privacy-log-retention.md @@ -24,5 +24,3 @@ This chatbot planning document supports operational design and risk management. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/test-scripts.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/test-scripts.md index 547deb80b..b80b474cc 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/test-scripts.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-chatbot-planner/references/test-scripts.md @@ -34,5 +34,3 @@ The chatbot must: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/SKILL.md index fb7257dd0..c74e8a106 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/SKILL.md @@ -67,5 +67,3 @@ Turn discovery inputs into practical AI governance outputs for client website, c --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/governance-guide-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/governance-guide-template.md index 4e5138e01..ac0ccf155 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/governance-guide-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/governance-guide-template.md @@ -126,5 +126,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/high-risk-interactive-mode.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/high-risk-interactive-mode.md index 6645bc9a4..e48ba1f8f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/high-risk-interactive-mode.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/high-risk-interactive-mode.md @@ -46,5 +46,3 @@ Do not imply that LightSpeed can certify legal compliance. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/minimum-client-inputs.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/minimum-client-inputs.md index 7de25fb45..fc6d57193 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/minimum-client-inputs.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/minimum-client-inputs.md @@ -35,5 +35,3 @@ Ask these if details are missing: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/prompt-templates.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/prompt-templates.md index 364a81ad0..7842ab347 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/prompt-templates.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/prompt-templates.md @@ -63,5 +63,3 @@ This needs a member of the team to review it properly. I can help pass your requ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/role-map.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/role-map.md index 813152873..94ecc3754 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/role-map.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-governance-documentor/references/role-map.md @@ -25,5 +25,3 @@ For small clients: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/SKILL.md index d2d78d579..5abe92850 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/SKILL.md @@ -89,5 +89,3 @@ Always include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/red-flags.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/red-flags.md index 209e57a3a..f39325397 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/red-flags.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/red-flags.md @@ -44,5 +44,3 @@ Flag these even when the overall score is high. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/report-template.md index 052827644..b16d75a2d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/report-template.md @@ -79,5 +79,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/scoring-model.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/scoring-model.md index 675a4c173..dd05b786d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/scoring-model.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/scoring-model.md @@ -50,5 +50,3 @@ Assess approved source content, chatbot job definition, boundaries, human escala --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/tool-checks.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/tool-checks.md index 43564ee9a..5924b846d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/tool-checks.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/ai-readiness-assessor/references/tool-checks.md @@ -16,5 +16,3 @@ Always include relevant tool checks unless the user asks for a shorter report. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/SKILL.md index 0282c7332..4853820b8 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/SKILL.md @@ -65,5 +65,3 @@ Use: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/client-email-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/client-email-template.md index 024cf9ea3..0a0e9a443 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/client-email-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/client-email-template.md @@ -29,5 +29,3 @@ Best, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/content-gap-report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/content-gap-report-template.md index a7f19d5b2..6a563d543 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/content-gap-report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/content-gap-report-template.md @@ -43,5 +43,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/folder-structure.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/folder-structure.md index 7a63265f8..f9a3ad0b7 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/folder-structure.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/folder-structure.md @@ -32,5 +32,3 @@ Examples: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/generic-website-content-checklist.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/generic-website-content-checklist.md index f32c0fc3d..9b96ca659 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/generic-website-content-checklist.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/generic-website-content-checklist.md @@ -63,5 +63,3 @@ For each page, ask for: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/sector-addons.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/sector-addons.md index 1213e8cc6..0042afeb4 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/sector-addons.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/content-collection-planner/references/sector-addons.md @@ -114,5 +114,3 @@ Add stricter controls: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/SKILL.md index 9ca7adaf2..c487ee811 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/SKILL.md @@ -189,5 +189,3 @@ v1.0.0 - first installable orchestrator version. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/client-project-wizard.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/client-project-wizard.md index 1bf0f1df5..718ba428c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/client-project-wizard.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/client-project-wizard.md @@ -51,5 +51,3 @@ For a full project pack, create the standard 00 to 10 file sequence. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/lightspeed-service-positioning.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/lightspeed-service-positioning.md index 17119f2f1..546ed02a2 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/lightspeed-service-positioning.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/lightspeed-service-positioning.md @@ -67,5 +67,3 @@ Recommend the smallest useful next step first. Avoid over-engineering. Emphasise --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/output-standards.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/output-standards.md index d3ddffd13..ed29c4194 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/output-standards.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/output-standards.md @@ -86,5 +86,3 @@ This document supports operational planning and governance. It is not legal, reg --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/red-flags.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/red-flags.md index b8c6de173..f15923903 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/red-flags.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/red-flags.md @@ -58,5 +58,3 @@ When a red flag is detected: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/skill-routing-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/skill-routing-rules.md index d8ed73620..69600c2ce 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/skill-routing-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ai-readiness-orchestrator/references/skill-routing-rules.md @@ -54,5 +54,3 @@ Provide a warning and recommend governance/content foundation work first. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/SKILL.md index 26dd09b94..baf326b1b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/SKILL.md @@ -99,5 +99,3 @@ For legal, privacy, accessibility, compliance, data protection, regulated-sector --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/approved-wording-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/approved-wording-template.md index be2a01474..c2db83e27 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/approved-wording-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/approved-wording-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/claim-register-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/claim-register-template.md index 55849483a..d765bd0d9 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/claim-register-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/claim-register-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/evidence-needed-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/evidence-needed-template.md index 0bb26fb78..94e3f5e9c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/evidence-needed-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/evidence-needed-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/page-location-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/page-location-map-template.md index 6537232a0..d6e7fc520 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/page-location-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/page-location-map-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/publication-summary-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/publication-summary-template.md index 2cf5414c6..af9fc817d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/publication-summary-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/publication-summary-template.md @@ -15,5 +15,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/rejected-wording-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/rejected-wording-template.md index 2dc3f9596..e7b3264d5 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/rejected-wording-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/rejected-wording-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/review-owner-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/review-owner-template.md index e8364e381..9c7ff9baf 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/review-owner-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/assets/review-owner-template.md @@ -11,5 +11,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/approved-wording-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/approved-wording-rules.md index 8b23041f5..a2918c74a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/approved-wording-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/approved-wording-rules.md @@ -36,5 +36,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/chatbot-claim-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/chatbot-claim-rules.md index 3dda65e9c..f5aebf921 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/chatbot-claim-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/chatbot-claim-rules.md @@ -24,5 +24,3 @@ Raw stats files, internal strategy notes, draft claims and unverified AI/ROI cla --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-audit-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-audit-workflow.md index 96748a6a1..57235889b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-audit-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-audit-workflow.md @@ -25,5 +25,3 @@ For website launch, review high-risk claims before content freeze. For live site --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-types.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-types.md index 97a0d0d8c..ffaa6ed0c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-types.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/claim-types.md @@ -21,5 +21,3 @@ Flag implied claims too. For example, "AI-ready" implies governance, sources, pr --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/classification-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/classification-rules.md index a2e0b80ee..173bc9629 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/classification-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/classification-rules.md @@ -50,5 +50,3 @@ Use when claims mention: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/evidence-standards.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/evidence-standards.md index a79e3bac5..1dc00b250 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/evidence-standards.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/evidence-standards.md @@ -43,5 +43,3 @@ Record: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/report-template.md index c2c13aa5f..e98574f78 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-claim-register-auditor/references/report-template.md @@ -42,5 +42,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/SKILL.md index b0a917842..a7c177e82 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/SKILL.md @@ -114,5 +114,3 @@ Use UK English. Keep answers clear, practical and concise. Avoid hype, unsupport --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/chatbot-safe-faq-register-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/chatbot-safe-faq-register-template.md index e081c8011..dad9546d0 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/chatbot-safe-faq-register-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/chatbot-safe-faq-register-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/company-faq-page-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/company-faq-page-template.md index a7c04f321..f4cccf77b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/company-faq-page-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/company-faq-page-template.md @@ -27,5 +27,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/duplicate-faq-report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/duplicate-faq-report-template.md index afa52923d..e01921dec 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/duplicate-faq-report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/duplicate-faq-report-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/escalation-questions-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/escalation-questions-template.md index be618ffc8..8fdcba50f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/escalation-questions-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/escalation-questions-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/page-level-faq-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/page-level-faq-map-template.md index ccba96474..d09cf3b7f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/page-level-faq-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/page-level-faq-map-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/schema-ready-faq-answers-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/schema-ready-faq-answers-template.md index 38758056c..a8c967512 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/schema-ready-faq-answers-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/schema-ready-faq-answers-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/unsupported-questions-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/unsupported-questions-template.md index 5eb3f4790..6530395ca 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/unsupported-questions-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/assets/unsupported-questions-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/chatbot-safe-source-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/chatbot-safe-source-rules.md index ffd574be8..4c385d767 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/chatbot-safe-source-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/chatbot-safe-source-rules.md @@ -44,5 +44,3 @@ When a question cannot be answered safely: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/escalation-and-unsupported-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/escalation-and-unsupported-rules.md index 1669a796f..b13c2b00c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/escalation-and-unsupported-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/escalation-and-unsupported-rules.md @@ -34,5 +34,3 @@ Fields: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-curation-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-curation-workflow.md index a90e7731d..6493f7dba 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-curation-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-curation-workflow.md @@ -78,5 +78,3 @@ Flag: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-taxonomy.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-taxonomy.md index 2d0ec4f7a..fd0be8301 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-taxonomy.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/faq-taxonomy.md @@ -26,5 +26,3 @@ Use page-level FAQ when the answer depends on a service, sector, policy or techn --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/report-templates.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/report-templates.md index 4cc5d6dde..3cc1dd2fc 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/report-templates.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/report-templates.md @@ -55,5 +55,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/schema-ready-faq-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/schema-ready-faq-rules.md index ba976eb74..9387276ad 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/schema-ready-faq-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-faq-and-chatbot-source-curator/references/schema-ready-faq-rules.md @@ -28,5 +28,3 @@ Schema-ready answers should: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/SKILL.md index a23210c7d..630ae0efa 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/SKILL.md @@ -120,5 +120,3 @@ Use asset templates when the user asks for tables, reports or downloadable outpu --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/accessibility-state-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/accessibility-state-template.md index 7637203f0..eb059d1ef 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/accessibility-state-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/accessibility-state-template.md @@ -9,5 +9,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/component-block-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/component-block-map-template.md index e894ea165..8eeeb4463 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/component-block-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/component-block-map-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/issue-register-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/issue-register-template.md index 09694c403..24b767212 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/issue-register-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/issue-register-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/light-dark-mode-qa-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/light-dark-mode-qa-template.md index 0ee61b6b9..754b11c82 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/light-dark-mode-qa-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/light-dark-mode-qa-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/parity-audit-report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/parity-audit-report-template.md index 8bb59c007..36081876c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/parity-audit-report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/parity-audit-report-template.md @@ -33,5 +33,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/pattern-section-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/pattern-section-map-template.md index be93cd187..7a3ba3bd8 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/pattern-section-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/pattern-section-map-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/responsive-qa-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/responsive-qa-template.md index b8468fffd..4b5596397 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/responsive-qa-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/responsive-qa-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/token-parity-table-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/token-parity-table-template.md index 247960e02..29265d353 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/token-parity-table-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/assets/token-parity-table-template.md @@ -9,5 +9,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/accessibility-state-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/accessibility-state-qa.md index 23d79a96e..711e7143f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/accessibility-state-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/accessibility-state-qa.md @@ -27,5 +27,3 @@ Treat missing keyboard access, invisible focus, inaccessible navigation, unlabel --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/component-block-mapping.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/component-block-mapping.md index ef4ddff72..8b62b142e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/component-block-mapping.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/component-block-mapping.md @@ -38,5 +38,3 @@ Map Figma components to: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/issue-severity-model.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/issue-severity-model.md index 9ab5b7253..8c6e0b8d2 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/issue-severity-model.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/issue-severity-model.md @@ -20,5 +20,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/light-dark-mode-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/light-dark-mode-qa.md index 959e5a9f5..0610cd891 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/light-dark-mode-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/light-dark-mode-qa.md @@ -26,5 +26,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/parity-audit-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/parity-audit-workflow.md index 679432d20..f6e004c07 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/parity-audit-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/parity-audit-workflow.md @@ -66,5 +66,3 @@ Classify issues by severity and produce a go/no-go recommendation. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/pattern-section-mapping.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/pattern-section-mapping.md index fd7f2b09e..174c70f0a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/pattern-section-mapping.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/pattern-section-mapping.md @@ -29,5 +29,3 @@ Confirm that major Figma sections exist as WordPress patterns or template parts --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/responsive-state-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/responsive-state-qa.md index 6276bf316..79fd30ea8 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/responsive-state-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/responsive-state-qa.md @@ -31,5 +31,3 @@ Record page, viewport, issue, severity, expected behaviour and fix owner. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/theme-json-token-mapping.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/theme-json-token-mapping.md index 4239e563a..3e4c20617 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/theme-json-token-mapping.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-figma-wordpress-parity-auditor/references/theme-json-token-mapping.md @@ -41,5 +41,3 @@ Compare Figma variables to `theme.json` settings for: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/SKILL.md index eaeb3352c..ca627a182 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/SKILL.md @@ -136,5 +136,3 @@ Outputs should be practical, launch-focused and easy to hand to a developer, ana --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/chatbot-handoff-events-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/chatbot-handoff-events-template.md index 29a565038..468c82730 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/chatbot-handoff-events-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/chatbot-handoff-events-template.md @@ -8,5 +8,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/consultation-cta-tracking-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/consultation-cta-tracking-template.md index e9b2c85f3..6d4702c16 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/consultation-cta-tracking-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/consultation-cta-tracking-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/form-tracking-plan-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/form-tracking-plan-template.md index 77ba4f544..cbf0ac95c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/form-tracking-plan-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/form-tracking-plan-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/ga4-event-plan-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/ga4-event-plan-template.md index bfc248a35..c1df2c42d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/ga4-event-plan-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/ga4-event-plan-template.md @@ -9,5 +9,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/gtm-trigger-notes-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/gtm-trigger-notes-template.md index 618bdadfd..949391f83 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/gtm-trigger-notes-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/gtm-trigger-notes-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/launch-baseline-report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/launch-baseline-report-template.md index ec400ea52..7660bb74a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/launch-baseline-report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/launch-baseline-report-template.md @@ -28,5 +28,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/lead-magnet-tracking-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/lead-magnet-tracking-template.md index 992f22352..fc1ee9444 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/lead-magnet-tracking-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/lead-magnet-tracking-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/looker-studio-dashboard-brief-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/looker-studio-dashboard-brief-template.md index c1f7c6ce5..622a9dcf7 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/looker-studio-dashboard-brief-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/looker-studio-dashboard-brief-template.md @@ -21,5 +21,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/measurement-qa-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/measurement-qa-checklist-template.md index 9b1f6942d..97846cf11 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/measurement-qa-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/assets/measurement-qa-checklist-template.md @@ -15,5 +15,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/chatbot-handoff-events.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/chatbot-handoff-events.md index e304d90d1..abbeadbe6 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/chatbot-handoff-events.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/chatbot-handoff-events.md @@ -27,5 +27,3 @@ Do not send transcript text, names, email addresses or personal data to GA4. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/event-naming-and-parameters.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/event-naming-and-parameters.md index 68bd36e39..ed8bc6aad 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/event-naming-and-parameters.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/event-naming-and-parameters.md @@ -49,5 +49,3 @@ Use snake_case. Keep names clear and stable. Do not include changing page titles --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/form-and-lead-tracking.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/form-and-lead-tracking.md index 5b941ba28..d40988855 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/form-and-lead-tracking.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/form-and-lead-tracking.md @@ -36,5 +36,3 @@ Recommended events: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/gtm-trigger-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/gtm-trigger-notes.md index 3d78e0702..d406764b1 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/gtm-trigger-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/gtm-trigger-notes.md @@ -22,5 +22,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/launch-baseline-report.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/launch-baseline-report.md index 4db5eeb38..148dbcf4e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/launch-baseline-report.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/launch-baseline-report.md @@ -31,5 +31,3 @@ Capture the state of measurement before launch so post-launch performance can be --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/looker-studio-dashboard.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/looker-studio-dashboard.md index 2e51010a5..8c2335bba 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/looker-studio-dashboard.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/looker-studio-dashboard.md @@ -34,5 +34,3 @@ Keep dashboards decision-focused. Avoid vanity metrics without lead or content-q --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/measurement-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/measurement-workflow.md index 54a21c310..355067490 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/measurement-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/measurement-workflow.md @@ -35,5 +35,3 @@ Use tables. Mark items as: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/privacy-and-consent-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/privacy-and-consent-notes.md index 8879761bc..c180bbe6e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/privacy-and-consent-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-ga4-conversion-tracking-planner/references/privacy-and-consent-notes.md @@ -22,5 +22,3 @@ Do not send personally identifiable information to GA4 event names or parameters --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/SKILL.md index cf505f8aa..6921f7749 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/SKILL.md @@ -113,5 +113,3 @@ Use UK English. Keep outputs practical, structured and suitable for Google Docs, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/block-plugin-qa-matrix-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/block-plugin-qa-matrix-template.md index a7ab244de..01f37d005 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/block-plugin-qa-matrix-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/block-plugin-qa-matrix-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/go-no-go-summary-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/go-no-go-summary-template.md index a572d5d86..92a191d24 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/go-no-go-summary-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/go-no-go-summary-template.md @@ -30,5 +30,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-gate-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-gate-checklist-template.md index f408040ce..8cf24ffc2 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-gate-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-gate-checklist-template.md @@ -14,5 +14,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-qa-plan-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-qa-plan-template.md index 46dec9841..8c1431020 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-qa-plan-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/launch-qa-plan-template.md @@ -34,5 +34,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/page-template-qa-matrix-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/page-template-qa-matrix-template.md index cff26e651..d55583f3a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/page-template-qa-matrix-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/page-template-qa-matrix-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/pattern-qa-matrix-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/pattern-qa-matrix-template.md index 7483ce81a..19e44dc04 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/pattern-qa-matrix-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/pattern-qa-matrix-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/qa-workstream-table-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/qa-workstream-table-template.md index e4661b47e..e3d324127 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/qa-workstream-table-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/assets/qa-workstream-table-template.md @@ -12,5 +12,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/accessibility-responsive-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/accessibility-responsive-qa.md index 82df04b23..ae34fadbe 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/accessibility-responsive-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/accessibility-responsive-qa.md @@ -42,5 +42,3 @@ Check at minimum: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-plugin-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-plugin-qa.md index 31dc4e1bb..2864fd5c1 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-plugin-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-plugin-qa.md @@ -54,5 +54,3 @@ Check: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-theme-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-theme-qa.md index 348dd7c9f..42371666f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-theme-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/block-theme-qa.md @@ -54,5 +54,3 @@ Common blockers: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/conversion-and-tracking-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/conversion-and-tracking-qa.md index 116ea27a1..b0048c87c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/conversion-and-tracking-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/conversion-and-tracking-qa.md @@ -43,5 +43,3 @@ Verify: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/figma-to-wordpress-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/figma-to-wordpress-qa.md index a559a0cfb..fb5a33518 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/figma-to-wordpress-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/figma-to-wordpress-qa.md @@ -34,5 +34,3 @@ Check whether Figma design-system intent is implemented correctly in WordPress. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-gate-model.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-gate-model.md index fb37dbfcf..121915903 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-gate-model.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-gate-model.md @@ -19,5 +19,3 @@ Treat missing evidence as a risk. If the item is critical, missing evidence can --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-qa-planning-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-qa-planning-workflow.md index 8756e0287..71daa97e5 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-qa-planning-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/launch-qa-planning-workflow.md @@ -84,5 +84,3 @@ Summarise: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/pattern-and-template-qa.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/pattern-and-template-qa.md index b43ed69c6..0688c71ca 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/pattern-and-template-qa.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/pattern-and-template-qa.md @@ -48,5 +48,3 @@ Use: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/specialist-skill-routing.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/specialist-skill-routing.md index f19e7ecee..f6d451bd1 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/specialist-skill-routing.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-qa-planner/references/specialist-skill-routing.md @@ -27,5 +27,3 @@ For each routed item include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/SKILL.md index 68b797bb1..20b792e4b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/SKILL.md @@ -119,5 +119,3 @@ Be practical, specific and non-alarmist. Separate launch blockers from post-laun --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/accessibility-testing-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/accessibility-testing-template.md index e1cb3c202..f6520dd8c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/accessibility-testing-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/accessibility-testing-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/analytics-tagging-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/analytics-tagging-template.md index 3c85dd97e..faef480c0 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/analytics-tagging-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/analytics-tagging-template.md @@ -8,5 +8,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/broken-link-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/broken-link-checklist-template.md index cc869fe3a..b34a3fb43 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/broken-link-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/broken-link-checklist-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/form-testing-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/form-testing-template.md index 5deefd5e9..490f58f38 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/form-testing-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/form-testing-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/go-no-go-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/go-no-go-template.md index 504ad65e0..e4024b58b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/go-no-go-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/go-no-go-template.md @@ -23,5 +23,3 @@ Go / Conditional Go / No-Go --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/launch-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/launch-checklist-template.md index 031989f3d..0f922e925 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/launch-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/launch-checklist-template.md @@ -16,5 +16,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/mobile-responsive-qa-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/mobile-responsive-qa-template.md index 832109a7b..7779b669b 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/mobile-responsive-qa-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/mobile-responsive-qa-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/page-qa-table-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/page-qa-table-template.md index 62c11883c..2b193fc83 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/page-qa-table-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/page-qa-table-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/performance-notes-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/performance-notes-template.md index 7de189614..15b4035e2 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/performance-notes-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/assets/performance-notes-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/go-no-go-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/go-no-go-rules.md index 2bb4a9416..e58b56cdf 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/go-no-go-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/go-no-go-rules.md @@ -40,5 +40,3 @@ Use `No-Go` when any of these apply: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/issue-severity-model.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/issue-severity-model.md index 11a2892a9..a7fa80943 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/issue-severity-model.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/issue-severity-model.md @@ -23,5 +23,3 @@ Escalate severity when the issue affects: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/launch-readiness-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/launch-readiness-workflow.md index 474fc9dc7..b62afa02f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/launch-readiness-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/launch-readiness-workflow.md @@ -65,5 +65,3 @@ Produce a structured report with: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/qa-checklists.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/qa-checklists.md index b2d45d4e3..f88894137 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/qa-checklists.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/qa-checklists.md @@ -88,5 +88,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/report-templates.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/report-templates.md index 33aeeb352..a34f6497e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/report-templates.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/report-templates.md @@ -50,5 +50,3 @@ Go / Conditional Go / No-Go --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/wordpress-launch-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/wordpress-launch-notes.md index 73948f28e..38543a0cd 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/wordpress-launch-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-launch-readiness-auditor/references/wordpress-launch-notes.md @@ -32,5 +32,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/SKILL.md index 3dd4e5e16..bcf46d873 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/SKILL.md @@ -110,5 +110,3 @@ Include this disclaimer whenever privacy, cookies, accessibility, AI logging, ch --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/accessibility-statement-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/accessibility-statement-template.md index b8ff5538c..3012f8883 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/accessibility-statement-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/accessibility-statement-template.md @@ -28,5 +28,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/ai-governance-page-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/ai-governance-page-template.md index 1c0926e89..9dfda32f5 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/ai-governance-page-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/ai-governance-page-template.md @@ -29,5 +29,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/chatbot-disclosure-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/chatbot-disclosure-template.md index 4ae52098f..52aa6221f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/chatbot-disclosure-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/chatbot-disclosure-template.md @@ -24,5 +24,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/cookie-policy-brief-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/cookie-policy-brief-template.md index c375ab634..603caa125 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/cookie-policy-brief-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/cookie-policy-brief-template.md @@ -20,5 +20,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/data-log-retention-decision-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/data-log-retention-decision-template.md index c7c06ea77..34cd8d45f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/data-log-retention-decision-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/data-log-retention-decision-template.md @@ -20,5 +20,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/privacy-policy-brief-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/privacy-policy-brief-template.md index 0378235d2..0cc62210c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/privacy-policy-brief-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/assets/privacy-policy-brief-template.md @@ -32,5 +32,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/accessibility-statement.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/accessibility-statement.md index e459fe427..a37c30b1a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/accessibility-statement.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/accessibility-statement.md @@ -43,5 +43,3 @@ Mention testing only if performed: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/ai-governance-page.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/ai-governance-page.md index e81cc2ecd..a04220607 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/ai-governance-page.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/ai-governance-page.md @@ -37,5 +37,3 @@ The AI Governance page is public trust content. It should explain how LightSpeed --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/chatbot-disclosure.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/chatbot-disclosure.md index c55881551..3e371703d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/chatbot-disclosure.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/chatbot-disclosure.md @@ -30,5 +30,3 @@ Escalate or refuse: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/cookie-policy-brief.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/cookie-policy-brief.md index ec3176fce..48fd2ec98 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/cookie-policy-brief.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/cookie-policy-brief.md @@ -32,5 +32,3 @@ Use plain categories: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/data-log-retention.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/data-log-retention.md index 89441a70b..e68d816b6 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/data-log-retention.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/data-log-retention.md @@ -31,5 +31,3 @@ Use this reference to create decision logs for forms, analytics, AI tools and ch --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/policy-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/policy-workflow.md index f84bf44b3..38ec0d045 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/policy-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/policy-workflow.md @@ -54,5 +54,3 @@ Every output should end with: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/privacy-policy-brief.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/privacy-policy-brief.md index ce12e49c7..f439486e4 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/privacy-policy-brief.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/privacy-policy-brief.md @@ -41,5 +41,3 @@ Mark as `Legal/Privacy Review Required` until reviewed. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/review-and-approval.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/review-and-approval.md index 214c6b75e..fe99ac6f0 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/review-and-approval.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-policy-page-generator/references/review-and-approval.md @@ -38,5 +38,3 @@ Every policy/trust output should include: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-project-onboarding/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-project-onboarding/SKILL.md index 77fee3327..904e8286f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-project-onboarding/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-project-onboarding/SKILL.md @@ -172,5 +172,3 @@ For routing outputs, keep the recommendation practical and team-friendly. Do not --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/SKILL.md index d25a8c972..9e0e57084 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/SKILL.md @@ -114,5 +114,3 @@ Use these assets as templates when generating downloadable artefacts: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/404-risk-list-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/404-risk-list-template.md index 0001a306e..d0ee26057 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/404-risk-list-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/404-risk-list-template.md @@ -15,5 +15,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/current-url-inventory-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/current-url-inventory-template.md index 6763fcb58..bb9fd9bf9 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/current-url-inventory-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/current-url-inventory-template.md @@ -12,5 +12,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/launch-day-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/launch-day-checklist-template.md index 9fbec10f8..9c027f711 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/launch-day-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/launch-day-checklist-template.md @@ -37,5 +37,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/new-url-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/new-url-map-template.md index fd1a14dd6..8d87a5f5d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/new-url-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/new-url-map-template.md @@ -7,5 +7,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/redirect-status-table-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/redirect-status-table-template.md index c115638e2..c817d3af5 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/redirect-status-table-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/redirect-status-table-template.md @@ -17,5 +17,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/seo-migration-summary-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/seo-migration-summary-template.md index 99ccefd35..28679f5ea 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/seo-migration-summary-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/assets/seo-migration-summary-template.md @@ -21,5 +21,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-planning-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-planning-workflow.md index 8bbd7e300..f53c86803 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-planning-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-planning-workflow.md @@ -99,5 +99,3 @@ Monitor: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-status-model.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-status-model.md index bad933882..a477f031e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-status-model.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/redirect-status-model.md @@ -37,5 +37,3 @@ Flag URLs where: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/report-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/report-template.md index 22f575b86..db182a3e6 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/report-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/report-template.md @@ -39,5 +39,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/seo-migration-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/seo-migration-notes.md index f80fccacc..4b7c1ea6c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/seo-migration-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/seo-migration-notes.md @@ -48,5 +48,3 @@ After launch: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/wordpress-redirect-notes.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/wordpress-redirect-notes.md index cde38760f..a37c5791a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/wordpress-redirect-notes.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-redirect-map-planner/references/wordpress-redirect-notes.md @@ -45,5 +45,3 @@ Avoid relying only on WordPress automatic slug redirects for a major IA change. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/SKILL.md index f4b35f8e5..30052ee06 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/SKILL.md @@ -116,5 +116,3 @@ Outputs should be implementation-ready for a WordPress launch team, but must rem --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/ai-visibility-baseline-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/ai-visibility-baseline-template.md index eeb307157..b1ed7b2ad 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/ai-visibility-baseline-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/ai-visibility-baseline-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/claim-safe-wording-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/claim-safe-wording-template.md index 1495de714..bf49b662d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/claim-safe-wording-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/claim-safe-wording-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/faq-schema-map-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/faq-schema-map-template.md index ba5a2d946..6f17c254d 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/faq-schema-map-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/faq-schema-map-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/internal-linking-plan-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/internal-linking-plan-template.md index 427860944..34ac2c815 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/internal-linking-plan-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/internal-linking-plan-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/page-schema-recommendation-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/page-schema-recommendation-template.md index dd559948b..2c3b5403c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/page-schema-recommendation-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/page-schema-recommendation-template.md @@ -6,5 +6,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/schema-launch-checklist-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/schema-launch-checklist-template.md index 1b25e2b66..cd7c70687 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/schema-launch-checklist-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/assets/schema-launch-checklist-template.md @@ -17,5 +17,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/ai-visibility-baseline.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/ai-visibility-baseline.md index 130f6bc5d..e72249200 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/ai-visibility-baseline.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/ai-visibility-baseline.md @@ -35,5 +35,3 @@ AI visibility fluctuates. Treat this as monitoring and improvement, not a guaran --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/answer-engine-optimisation.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/answer-engine-optimisation.md index 233f0b885..d97e78899 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/answer-engine-optimisation.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/answer-engine-optimisation.md @@ -35,5 +35,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/claim-safe-wording.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/claim-safe-wording.md index 9e8823c4f..7b1643871 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/claim-safe-wording.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/claim-safe-wording.md @@ -37,5 +37,3 @@ When rewriting claims, include the original claim, suggested wording and evidenc --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/faq-schema-map.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/faq-schema-map.md index ac82ba99d..164a6d081 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/faq-schema-map.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/faq-schema-map.md @@ -29,5 +29,3 @@ Recommend a company FAQ page plus selected page-level FAQs. Deduplicate repeated --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/internal-linking-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/internal-linking-rules.md index 5396ffeac..aa268a2b6 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/internal-linking-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/internal-linking-rules.md @@ -36,5 +36,3 @@ Avoid vague anchors such as: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-types.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-types.md index 76a5f852a..7a13cfc88 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-types.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-types.md @@ -25,5 +25,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-workflow.md index 3cf9a707a..3dade82aa 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/schema-workflow.md @@ -52,5 +52,3 @@ Require schema validation, crawl checks, Search Console setup and post-launch mo --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/validation-and-monitoring.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/validation-and-monitoring.md index c06ba808e..08918403a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/validation-and-monitoring.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-schema-and-ai-discoverability-planner/references/validation-and-monitoring.md @@ -35,5 +35,3 @@ Do not mark schema/search launch-ready if: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/SKILL.md index 0fcf9ef4f..7d85e0ff8 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/SKILL.md @@ -107,5 +107,3 @@ Outputs should be practical, structured and ready for human review. Avoid hype, --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/case-study-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/case-study-template.md index 38c3560c2..fbc6d7377 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/case-study-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/case-study-template.md @@ -25,5 +25,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/content-pack-readme-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/content-pack-readme-template.md index 944675c79..2b651ff49 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/content-pack-readme-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/content-pack-readme-template.md @@ -19,5 +19,3 @@ This pack contains generated content drafts and internal review notes. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/faq-page-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/faq-page-template.md index 7d22caa17..55248a892 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/faq-page-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/faq-page-template.md @@ -21,5 +21,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/page-brief-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/page-brief-template.md index 2b347a3bf..77bc92fa7 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/page-brief-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/page-brief-template.md @@ -33,5 +33,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/service-page-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/service-page-template.md index aa3fb1da9..e582df79f 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/service-page-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/service-page-template.md @@ -25,5 +25,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/solution-page-template.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/solution-page-template.md index a7f65d7e2..ac614c153 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/solution-page-template.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/assets/solution-page-template.md @@ -25,5 +25,3 @@ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/chatbot-safe-content-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/chatbot-safe-content-rules.md index 87a187e39..de1a9e94c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/chatbot-safe-content-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/chatbot-safe-content-rules.md @@ -74,5 +74,3 @@ Status: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/claim-handling-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/claim-handling-rules.md index 0c1953da6..2c3bba588 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/claim-handling-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/claim-handling-rules.md @@ -53,5 +53,3 @@ When a claim is used, list: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/content-generation-workflow.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/content-generation-workflow.md index 349d262d3..8c2aa449c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/content-generation-workflow.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/content-generation-workflow.md @@ -86,5 +86,3 @@ content-pack/ --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/lightspeed-style-guide.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/lightspeed-style-guide.md index 9c30954cb..e55e0bc46 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/lightspeed-style-guide.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/lightspeed-style-guide.md @@ -73,5 +73,3 @@ Use these only when evidence and context support them. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/page-output-templates.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/page-output-templates.md index 910aaa76f..ee99c9906 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/page-output-templates.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/page-output-templates.md @@ -161,5 +161,3 @@ Secondary action: [CTA] --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/review-status-labels.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/review-status-labels.md index e812b9a48..416f2c6a4 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/review-status-labels.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/review-status-labels.md @@ -24,5 +24,3 @@ If the content includes stats, outcomes or AI/ROI claims, default those claims t --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/seo-and-schema-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/seo-and-schema-rules.md index a676e3e12..d64988ea2 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/seo-and-schema-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/seo-and-schema-rules.md @@ -58,5 +58,3 @@ Support AI/search discoverability by: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/source-inputs.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/source-inputs.md index dbc9844df..20547bb96 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/source-inputs.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/lightspeed-website-content-generator/references/source-inputs.md @@ -40,5 +40,3 @@ When a user uploads a zip or folder of content artefacts: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/README.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/README.md index 57988de12..e4c5d6b14 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/README.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/README.md @@ -46,5 +46,3 @@ python scripts/validate_markdown_content.py --target files --schema references/f --- *Built by 🧱 LightSpeedWP with ☕, 🚀, and open-source spirit!* - -[🔗 Website](https://lightspeedwp.agency) · [📧 Contact](https://lightspeedwp.agency/contact) · [👥 Contributors](https://github.com/lightspeedwp/.github/graphs/contributors) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/SKILL.md index 3dd4762c0..a05e4248c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/SKILL.md @@ -162,5 +162,3 @@ Use explicit include and exclude globs whenever the folder contains mixed conten --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/example-validation-report.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/example-validation-report.md index ee4678567..2df83b758 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/example-validation-report.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/example-validation-report.md @@ -35,5 +35,3 @@ version: "1.0.0" --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/markdown-validation-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/markdown-validation-rules.md index a7c967933..7b21a9d34 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/markdown-validation-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/markdown-validation-rules.md @@ -51,5 +51,3 @@ Use style suggestions for consistency improvements that do not automatically mak --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/schema-customisation.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/schema-customisation.md index ceeea42d6..2fc75603e 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/schema-customisation.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/schema-customisation.md @@ -27,5 +27,3 @@ If an existing project schema is stronger and compatible, keep it. If it is weak --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/semver-versioning-rules.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/semver-versioning-rules.md index f35296f54..679976198 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/semver-versioning-rules.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/references/semver-versioning-rules.md @@ -46,5 +46,3 @@ Do not guess. Ask the user to confirm whether the change should be treated as `m --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/invalid-version.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/invalid-version.md index 80d3d625d..743426b03 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/invalid-version.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/invalid-version.md @@ -14,5 +14,3 @@ This file should fail because the version is not valid SemVer. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/markdown-issues.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/markdown-issues.md index a6b029cb1..d29e37eb6 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/markdown-issues.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/markdown-issues.md @@ -23,5 +23,3 @@ Trailing whitespace here. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/missing-frontmatter.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/missing-frontmatter.md index e33452a51..9e40554fc 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/missing-frontmatter.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/missing-frontmatter.md @@ -5,5 +5,3 @@ This file intentionally omits frontmatter. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/valid-example.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/valid-example.md index c93cf7202..0111ffd49 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/valid-example.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/valid-example.md @@ -17,5 +17,3 @@ This file should pass validation. --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/validation-report.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/validation-report.md index bb6a3dc0c..94150244a 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/validation-report.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/markdown-content-validator/tests/validation-report.md @@ -70,5 +70,3 @@ Add frontmatter bounded by `---` with at least `title`, `status`, `type`, and `v --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/post-launch-optimisation/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/post-launch-optimisation/SKILL.md index f427f4c6b..a8123dd26 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/post-launch-optimisation/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/post-launch-optimisation/SKILL.md @@ -238,5 +238,3 @@ Weak example: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/agent-attached/technical-seo-audit/SKILL.md b/agents/ai-readiness-estimator-agent/skills/agent-attached/technical-seo-audit/SKILL.md index 96922ae14..00775cf6c 100644 --- a/agents/ai-readiness-estimator-agent/skills/agent-attached/technical-seo-audit/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/agent-attached/technical-seo-audit/SKILL.md @@ -260,5 +260,3 @@ Weak example: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/local/frontend-skill/SKILL.md b/agents/ai-readiness-estimator-agent/skills/local/frontend-skill/SKILL.md index dc27d92b8..1a87729df 100644 --- a/agents/ai-readiness-estimator-agent/skills/local/frontend-skill/SKILL.md +++ b/agents/ai-readiness-estimator-agent/skills/local/frontend-skill/SKILL.md @@ -187,5 +187,3 @@ Motion rules: --- *Maintained by the 🤖 LightSpeedWP Automation Team* - -[📋 AI Governance](https://github.com/lightspeedwp/.github/blob/develop/docs/AUTOMATION.md) · [🧠 Agents](https://github.com/lightspeedwp/.github/blob/develop/AGENTS.md) · [📞 Contact](https://lightspeedwp.agency/contact) diff --git a/agents/ai-readiness-estimator-agent/skills/platform-managed/system/openai-docs/scripts/resolve-latest-model-info.js b/agents/ai-readiness-estimator-agent/skills/platform-managed/system/openai-docs/scripts/resolve-latest-model-info.js index 1bd16ac9b..2973fe066 100644 --- a/agents/ai-readiness-estimator-agent/skills/platform-managed/system/openai-docs/scripts/resolve-latest-model-info.js +++ b/agents/ai-readiness-estimator-agent/skills/platform-managed/system/openai-docs/scripts/resolve-latest-model-info.js @@ -83,7 +83,7 @@ function parseFlatInfo(block) { function extractLatestModelInfo(markdown) { const lines = markdown.split(/\r?\n/); const latestModelInfoIndex = lines.findIndex((line) => - /^latestModelInfo:\s*$/.test(line) + /^latestModelInfo:\s*$/.test(line), ); if (latestModelInfoIndex >= 0) { @@ -91,7 +91,7 @@ function extractLatestModelInfo(markdown) { } const commentMatch = markdown.match( - //m + //m, ); if (commentMatch) { return parseFlatInfo(commentMatch[1]); @@ -115,7 +115,7 @@ function normalizeInfo(info, baseUrl) { if (!model || !migrationGuide || !promptingGuide) { throw new Error( - "latestModelInfo must include model, migrationGuide, and promptingGuide" + "latestModelInfo must include model, migrationGuide, and promptingGuide", ); } @@ -137,7 +137,7 @@ async function main() { } process.stdout.write( - `${JSON.stringify(normalizeInfo(info, baseUrl), null, 2)}\n` + `${JSON.stringify(normalizeInfo(info, baseUrl), null, 2)}\n`, ); } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/bindVariablesToComponent.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/bindVariablesToComponent.js index 50fe5cbcd..dc2dc43e9 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/bindVariablesToComponent.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/bindVariablesToComponent.js @@ -26,94 +26,99 @@ * List of node IDs that were mutated (for audit/validation purposes). */ export async function bindVariablesToComponent(component, bindings) { - const mutatedNodeIds = [] + const mutatedNodeIds = []; if (!component) { - return { mutatedNodeIds } + return { mutatedNodeIds }; } // Batch every getVariableByIdAsync call upfront in a single Promise.all rather // than awaiting per-property — the lookups are independent and IPC-bound. const floatBindings = [ - ['paddingTop', 'paddingTop'], - ['paddingBottom', 'paddingBottom'], - ['paddingLeft', 'paddingLeft'], - ['paddingRight', 'paddingRight'], - ['itemSpacing', 'itemSpacing'], - ['cornerRadius', 'cornerRadius'], - ] + ["paddingTop", "paddingTop"], + ["paddingBottom", "paddingBottom"], + ["paddingLeft", "paddingLeft"], + ["paddingRight", "paddingRight"], + ["itemSpacing", "itemSpacing"], + ["cornerRadius", "cornerRadius"], + ]; - const requestedIds = [] - if (bindings.fills) requestedIds.push(['fills', bindings.fills]) - if (bindings.strokes) requestedIds.push(['strokes', bindings.strokes]) + const requestedIds = []; + if (bindings.fills) requestedIds.push(["fills", bindings.fills]); + if (bindings.strokes) requestedIds.push(["strokes", bindings.strokes]); for (const [bindingKey] of floatBindings) { - if (bindings[bindingKey]) requestedIds.push([bindingKey, bindings[bindingKey]]) + if (bindings[bindingKey]) + requestedIds.push([bindingKey, bindings[bindingKey]]); } const resolved = await Promise.all( requestedIds.map(([, id]) => figma.variables.getVariableByIdAsync(id)), - ) - const varByKey = {} + ); + const varByKey = {}; for (let i = 0; i < requestedIds.length; i++) { - varByKey[requestedIds[i][0]] = resolved[i] + varByKey[requestedIds[i][0]] = resolved[i]; } const markMutated = () => { if (!mutatedNodeIds.includes(component.id)) { - mutatedNodeIds.push(component.id) + mutatedNodeIds.push(component.id); } - } + }; // --- Fills --- - const fillVar = varByKey.fills + const fillVar = varByKey.fills; if (fillVar) { - const existingFills = component.fills + const existingFills = component.fills; if (Array.isArray(existingFills) && existingFills.length > 0) { // Bind the color of the first fill to the variable - const boundFill = figma.variables.setBoundVariableForPaint(existingFills[0], 'color', fillVar) - component.fills = [boundFill, ...existingFills.slice(1)] + const boundFill = figma.variables.setBoundVariableForPaint( + existingFills[0], + "color", + fillVar, + ); + component.fills = [boundFill, ...existingFills.slice(1)]; } else { // No existing fill — create a solid fill bound to the variable const boundFill = figma.variables.setBoundVariableForPaint( - { type: 'SOLID', color: { r: 0.5, g: 0.5, b: 0.5 } }, - 'color', + { type: "SOLID", color: { r: 0.5, g: 0.5, b: 0.5 } }, + "color", fillVar, - ) - component.fills = [boundFill] + ); + component.fills = [boundFill]; } - markMutated() + markMutated(); } // --- Strokes --- - const strokeVar = varByKey.strokes + const strokeVar = varByKey.strokes; if (strokeVar) { - const existingStrokes = component.strokes + const existingStrokes = component.strokes; if (Array.isArray(existingStrokes) && existingStrokes.length > 0) { const boundStroke = figma.variables.setBoundVariableForPaint( existingStrokes[0], - 'color', + "color", strokeVar, - ) - component.strokes = [boundStroke, ...existingStrokes.slice(1)] + ); + component.strokes = [boundStroke, ...existingStrokes.slice(1)]; } else { const boundStroke = figma.variables.setBoundVariableForPaint( - { type: 'SOLID', color: { r: 0.5, g: 0.5, b: 0.5 } }, - 'color', + { type: "SOLID", color: { r: 0.5, g: 0.5, b: 0.5 } }, + "color", strokeVar, - ) - component.strokes = [boundStroke] + ); + component.strokes = [boundStroke]; } - markMutated() + markMutated(); } // --- Spacing properties (FLOAT variables bound via setBoundVariable) --- for (const [bindingKey, figmaProp] of floatBindings) { - const variable = varByKey[bindingKey] + const variable = varByKey[bindingKey]; if (variable) { - component.setBoundVariable(figmaProp, variable) - markMutated() + component.setBoundVariable(figmaProp, variable); + markMutated(); } } - return { mutatedNodeIds } + return { mutatedNodeIds }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/cleanupOrphans.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/cleanupOrphans.js index 882d721a8..26f4f87c3 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/cleanupOrphans.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/cleanupOrphans.js @@ -21,59 +21,61 @@ */ export async function cleanupOrphans(runId) { if (!runId) { - throw new Error('cleanupOrphans: runId is required.') + throw new Error("cleanupOrphans: runId is required."); } // dsb-tagged nodes are top-level user-created frames, never inside // component instances — skip invisible instance interiors to speed up the // pluginData scan dramatically on large files. - figma.skipInvisibleInstanceChildren = true + figma.skipInvisibleInstanceChildren = true; - const removedIds = [] - const originalPage = figma.currentPage + const removedIds = []; + const originalPage = figma.currentPage; // --- Remove tagged scene nodes (pages, frames, components, etc.) --- // Collect pages to remove (can't remove during iteration) - const pagesToRemove = [] + const pagesToRemove = []; for (const page of figma.root.children) { - if (page.getPluginData('dsb_run_id') === runId) { - pagesToRemove.push(page) - continue + if (page.getPluginData("dsb_run_id") === runId) { + pagesToRemove.push(page); + continue; } // Traverse all nodes on this page - await figma.setCurrentPageAsync(page) + await figma.setCurrentPageAsync(page); // Use the pluginData index to find candidates, then keep only those whose // run_id matches. Much faster than findAll + getPluginData on every node. const candidates = page.findAllWithCriteria({ - pluginData: { keys: ['dsb_run_id'] }, - }) - const tagged = candidates.filter((node) => node.getPluginData('dsb_run_id') === runId) + pluginData: { keys: ["dsb_run_id"] }, + }); + const tagged = candidates.filter( + (node) => node.getPluginData("dsb_run_id") === runId, + ); // Drop descendants of already-collected nodes (removing the parent removes // its children, so we only need the topmost match in each chain). - const taggedSet = new Set(tagged) + const taggedSet = new Set(tagged); const nodesToRemove = tagged.filter((node) => { - let p = node.parent + let p = node.parent; while (p) { - if (taggedSet.has(p)) return false - p = p.parent + if (taggedSet.has(p)) return false; + p = p.parent; } - return true - }) + return true; + }); // Remove deepest nodes first (children before parents) to avoid // "parent no longer exists" errors const sorted = nodesToRemove.sort((a, b) => { // Sort by depth descending: deeper nodes first - return getDepth(b) - getDepth(a) - }) + return getDepth(b) - getDepth(a); + }); for (const node of sorted) { if (node && node.parent) { - removedIds.push(node.id) - node.remove() + removedIds.push(node.id); + node.remove(); } } } @@ -82,45 +84,46 @@ export async function cleanupOrphans(runId) { for (const page of pagesToRemove) { // Cannot remove the last page in the document if (figma.root.children.length <= 1) { - break + break; } - removedIds.push(page.id) - page.remove() + removedIds.push(page.id); + page.remove(); } // --- Remove tagged variables --- - const allVariables = await figma.variables.getLocalVariablesAsync() + const allVariables = await figma.variables.getLocalVariablesAsync(); for (const variable of allVariables) { - if (variable.getPluginData('dsb_run_id') === runId) { - removedIds.push(variable.id) - variable.remove() + if (variable.getPluginData("dsb_run_id") === runId) { + removedIds.push(variable.id); + variable.remove(); } } // --- Remove tagged variable collections --- // Must be done after variables are removed - const allCollections = await figma.variables.getLocalVariableCollectionsAsync() + const allCollections = + await figma.variables.getLocalVariableCollectionsAsync(); for (const collection of allCollections) { - if (collection.getPluginData('dsb_run_id') === runId) { - removedIds.push(collection.id) - collection.remove() + if (collection.getPluginData("dsb_run_id") === runId) { + removedIds.push(collection.id); + collection.remove(); } } // Restore original page (if it still exists) try { - await figma.setCurrentPageAsync(originalPage) + await figma.setCurrentPageAsync(originalPage); } catch (_) { // Original page was removed — switch to first available page if (figma.root.children.length > 0) { - await figma.setCurrentPageAsync(figma.root.children[0]) + await figma.setCurrentPageAsync(figma.root.children[0]); } } return { removedCount: removedIds.length, removedIds, - } + }; } /** @@ -131,11 +134,11 @@ export async function cleanupOrphans(runId) { * @returns {number} */ function getDepth(node) { - let depth = 0 - let current = node + let depth = 0; + let current = node; while (current.parent) { - depth++ - current = current.parent + depth++; + current = current.parent; } - return depth + return depth; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createComponentWithVariants.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createComponentWithVariants.js index 333895efc..608fadd42 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createComponentWithVariants.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createComponentWithVariants.js @@ -34,103 +34,103 @@ * }>} */ export async function createComponentWithVariants(config, runId) { - const { name, variantAxes, baseProps, page } = config + const { name, variantAxes, baseProps, page } = config; // Ensure we are on the correct page - await figma.setCurrentPageAsync(page) + await figma.setCurrentPageAsync(page); // Compute Cartesian product of variant axes - const axisNames = Object.keys(variantAxes) - const axisValues = axisNames.map((k) => variantAxes[k]) - const combinations = cartesianProduct(axisValues) + const axisNames = Object.keys(variantAxes); + const axisValues = axisNames.map((k) => variantAxes[k]); + const combinations = cartesianProduct(axisValues); // Build one component per combination - const components = [] + const components = []; for (const combo of combinations) { - const comp = figma.createComponent() + const comp = figma.createComponent(); // Name: "Property=Value, Property=Value, ..." - comp.name = axisNames.map((ax, i) => `${ax}=${combo[i]}`).join(', ') + comp.name = axisNames.map((ax, i) => `${ax}=${combo[i]}`).join(", "); // Base geometry - comp.resize(baseProps.width, baseProps.height) + comp.resize(baseProps.width, baseProps.height); // Fills if (baseProps.fills !== undefined) { - comp.fills = baseProps.fills + comp.fills = baseProps.fills; } else { - comp.fills = [{ type: 'SOLID', color: { r: 0.9, g: 0.9, b: 0.9 } }] + comp.fills = [{ type: "SOLID", color: { r: 0.9, g: 0.9, b: 0.9 } }]; } // Corner radius if (baseProps.radius !== undefined) { - comp.cornerRadius = baseProps.radius + comp.cornerRadius = baseProps.radius; } // Auto-layout - if (baseProps.layoutMode && baseProps.layoutMode !== 'NONE') { - comp.layoutMode = baseProps.layoutMode - comp.primaryAxisAlignItems = 'CENTER' - comp.counterAxisAlignItems = 'CENTER' + if (baseProps.layoutMode && baseProps.layoutMode !== "NONE") { + comp.layoutMode = baseProps.layoutMode; + comp.primaryAxisAlignItems = "CENTER"; + comp.counterAxisAlignItems = "CENTER"; if (baseProps.itemSpacing !== undefined) { - comp.itemSpacing = baseProps.itemSpacing + comp.itemSpacing = baseProps.itemSpacing; } } // Padding if (baseProps.padding) { - comp.paddingTop = baseProps.padding.top ?? 0 - comp.paddingBottom = baseProps.padding.bottom ?? 0 - comp.paddingLeft = baseProps.padding.left ?? 0 - comp.paddingRight = baseProps.padding.right ?? 0 + comp.paddingTop = baseProps.padding.top ?? 0; + comp.paddingBottom = baseProps.padding.bottom ?? 0; + comp.paddingLeft = baseProps.padding.left ?? 0; + comp.paddingRight = baseProps.padding.right ?? 0; } // Plugin data - const variantKey = axisNames.map((ax, i) => `${ax}:${combo[i]}`).join('|') - comp.setPluginData('dsb_key', `component/${name}/${variantKey}`) + const variantKey = axisNames.map((ax, i) => `${ax}:${combo[i]}`).join("|"); + comp.setPluginData("dsb_key", `component/${name}/${variantKey}`); if (runId) { - comp.setPluginData('dsb_run_id', runId) + comp.setPluginData("dsb_run_id", runId); } - page.appendChild(comp) - components.push(comp) + page.appendChild(comp); + components.push(comp); } // Combine into a component set - const componentSet = figma.combineAsVariants(components, page) - componentSet.name = name - componentSet.setPluginData('dsb_key', `componentSet/${name}`) + const componentSet = figma.combineAsVariants(components, page); + componentSet.name = name; + componentSet.setPluginData("dsb_key", `componentSet/${name}`); if (runId) { - componentSet.setPluginData('dsb_run_id', runId) + componentSet.setPluginData("dsb_run_id", runId); } // Grid layout — variants stack at (0, 0) after combineAsVariants; reposition them. - const GRID_GAP = 16 - const cols = Math.max(1, axisValues[axisValues.length - 1]?.length ?? 1) - const variantWidth = baseProps.width - const variantHeight = baseProps.height + const GRID_GAP = 16; + const cols = Math.max(1, axisValues[axisValues.length - 1]?.length ?? 1); + const variantWidth = baseProps.width; + const variantHeight = baseProps.height; componentSet.children.forEach((variant, idx) => { - const col = idx % cols - const row = Math.floor(idx / cols) - variant.x = col * (variantWidth + GRID_GAP) - variant.y = row * (variantHeight + GRID_GAP) - }) + const col = idx % cols; + const row = Math.floor(idx / cols); + variant.x = col * (variantWidth + GRID_GAP); + variant.y = row * (variantHeight + GRID_GAP); + }); // Resize component set to wrap its children with padding - const totalCols = Math.min(cols, combinations.length) - const totalRows = Math.ceil(combinations.length / cols) - const PADDING = 40 + const totalCols = Math.min(cols, combinations.length); + const totalRows = Math.ceil(combinations.length / cols); + const PADDING = 40; componentSet.resize( totalCols * variantWidth + (totalCols - 1) * GRID_GAP + PADDING * 2, totalRows * variantHeight + (totalRows - 1) * GRID_GAP + PADDING * 2, - ) + ); // Position component set at a safe canvas location - componentSet.x = 480 - componentSet.y = 80 + componentSet.x = 480; + componentSet.y = 80; - return { componentSet, variants: componentSet.children } + return { componentSet, variants: componentSet.children }; } /** @@ -144,5 +144,5 @@ function cartesianProduct(arrays) { return arrays.reduce( (acc, curr) => acc.flatMap((combo) => curr.map((val) => [...combo, val])), [[]], - ) + ); } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createDocumentationPage.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createDocumentationPage.js index 874a5b8c2..d43bbd711 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createDocumentationPage.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createDocumentationPage.js @@ -34,114 +34,121 @@ */ async function createDocumentationPage(pageName, config, runId) { // Verify required fonts are available before loading - const allFonts = await figma.listAvailableFontsAsync() - const requiredStyles = ['Bold', 'Regular', 'Medium'] + const allFonts = await figma.listAvailableFontsAsync(); + const requiredStyles = ["Bold", "Regular", "Medium"]; for (const style of requiredStyles) { - const found = allFonts.some((f) => f.fontName.family === 'Inter' && f.fontName.style === style) + const found = allFonts.some( + (f) => f.fontName.family === "Inter" && f.fontName.style === style, + ); if (!found) { - const interFonts = allFonts.filter((f) => f.fontName.family === 'Inter') + const interFonts = allFonts.filter((f) => f.fontName.family === "Inter"); throw new Error( - `Font "Inter ${style}" not available. Available Inter styles: ${interFonts.map((f) => f.fontName.style).join(', ') || 'none'}`, - ) + `Font "Inter ${style}" not available. Available Inter styles: ${interFonts.map((f) => f.fontName.style).join(", ") || "none"}`, + ); } } await Promise.all([ - figma.loadFontAsync({ family: 'Inter', style: 'Bold' }), - figma.loadFontAsync({ family: 'Inter', style: 'Regular' }), - figma.loadFontAsync({ family: 'Inter', style: 'Medium' }), - ]) + figma.loadFontAsync({ family: "Inter", style: "Bold" }), + figma.loadFontAsync({ family: "Inter", style: "Regular" }), + figma.loadFontAsync({ family: "Inter", style: "Medium" }), + ]); // Create and activate the page - const page = figma.createPage() - page.name = pageName - await figma.setCurrentPageAsync(page) + const page = figma.createPage(); + page.name = pageName; + await figma.setCurrentPageAsync(page); if (runId) { - page.setPluginData('dsb_run_id', runId) - page.setPluginData('dsb_key', `page/${pageName}`) + page.setPluginData("dsb_run_id", runId); + page.setPluginData("dsb_key", `page/${pageName}`); } - const frameIds = [] + const frameIds = []; // Root scroll container — 1440px wide, auto-height - const root = figma.createAutoLayout('VERTICAL') - root.name = pageName - root.primaryAxisAlignItems = 'MIN' - root.counterAxisAlignItems = 'MIN' - root.itemSpacing = 80 - root.paddingTop = 80 - root.paddingBottom = 120 - root.paddingLeft = 80 - root.paddingRight = 80 - root.resize(1440, 1) - root.layoutSizingHorizontal = 'FIXED' - root.fills = [{ type: 'SOLID', color: { r: 1, g: 1, b: 1 } }] - root.x = 0 - root.y = 0 - page.appendChild(root) + const root = figma.createAutoLayout("VERTICAL"); + root.name = pageName; + root.primaryAxisAlignItems = "MIN"; + root.counterAxisAlignItems = "MIN"; + root.itemSpacing = 80; + root.paddingTop = 80; + root.paddingBottom = 120; + root.paddingLeft = 80; + root.paddingRight = 80; + root.resize(1440, 1); + root.layoutSizingHorizontal = "FIXED"; + root.fills = [{ type: "SOLID", color: { r: 1, g: 1, b: 1 } }]; + root.x = 0; + root.y = 0; + page.appendChild(root); if (runId) { - root.setPluginData('dsb_run_id', runId) - root.setPluginData('dsb_key', `frame/root/${pageName}`) + root.setPluginData("dsb_run_id", runId); + root.setPluginData("dsb_key", `frame/root/${pageName}`); } - frameIds.push(root.id) + frameIds.push(root.id); // Page header: title + optional description - const header = figma.createAutoLayout('VERTICAL') - header.name = 'Header' - header.itemSpacing = 12 - header.fills = [] - root.appendChild(header) - header.layoutSizingHorizontal = 'FILL' + const header = figma.createAutoLayout("VERTICAL"); + header.name = "Header"; + header.itemSpacing = 12; + header.fills = []; + root.appendChild(header); + header.layoutSizingHorizontal = "FILL"; - const titleNode = figma.createText() - titleNode.fontName = { family: 'Inter', style: 'Bold' } - titleNode.characters = config.title - titleNode.fontSize = 40 - titleNode.fills = [{ type: 'SOLID', color: { r: 0.07, g: 0.07, b: 0.07 } }] - titleNode.layoutSizingHorizontal = 'FILL' - header.appendChild(titleNode) + const titleNode = figma.createText(); + titleNode.fontName = { family: "Inter", style: "Bold" }; + titleNode.characters = config.title; + titleNode.fontSize = 40; + titleNode.fills = [{ type: "SOLID", color: { r: 0.07, g: 0.07, b: 0.07 } }]; + titleNode.layoutSizingHorizontal = "FILL"; + header.appendChild(titleNode); if (config.description) { - const descNode = figma.createText() - descNode.fontName = { family: 'Inter', style: 'Regular' } - descNode.characters = config.description - descNode.fontSize = 16 - descNode.lineHeight = { value: 24, unit: 'PIXELS' } - descNode.fills = [{ type: 'SOLID', color: { r: 0.4, g: 0.4, b: 0.4 } }] - descNode.layoutSizingHorizontal = 'FILL' - header.appendChild(descNode) + const descNode = figma.createText(); + descNode.fontName = { family: "Inter", style: "Regular" }; + descNode.characters = config.description; + descNode.fontSize = 16; + descNode.lineHeight = { value: 24, unit: "PIXELS" }; + descNode.fills = [{ type: "SOLID", color: { r: 0.4, g: 0.4, b: 0.4 } }]; + descNode.layoutSizingHorizontal = "FILL"; + header.appendChild(descNode); } // Sections for (const section of config.sections) { - const sectionFrame = figma.createAutoLayout('VERTICAL') - sectionFrame.name = `Section/${section.name}` - sectionFrame.itemSpacing = 20 - sectionFrame.fills = [] - root.appendChild(sectionFrame) - sectionFrame.layoutSizingHorizontal = 'FILL' + const sectionFrame = figma.createAutoLayout("VERTICAL"); + sectionFrame.name = `Section/${section.name}`; + sectionFrame.itemSpacing = 20; + sectionFrame.fills = []; + root.appendChild(sectionFrame); + sectionFrame.layoutSizingHorizontal = "FILL"; if (runId) { - sectionFrame.setPluginData('dsb_run_id', runId) - sectionFrame.setPluginData('dsb_key', `frame/section/${pageName}/${section.name}`) + sectionFrame.setPluginData("dsb_run_id", runId); + sectionFrame.setPluginData( + "dsb_key", + `frame/section/${pageName}/${section.name}`, + ); } // Section heading - const sectionHeading = figma.createText() - sectionHeading.fontName = { family: 'Inter', style: 'Bold' } - sectionHeading.characters = section.name - sectionHeading.fontSize = 24 - sectionHeading.fills = [{ type: 'SOLID', color: { r: 0.07, g: 0.07, b: 0.07 } }] - sectionHeading.layoutSizingHorizontal = 'FILL' - sectionFrame.appendChild(sectionHeading) + const sectionHeading = figma.createText(); + sectionHeading.fontName = { family: "Inter", style: "Bold" }; + sectionHeading.characters = section.name; + sectionHeading.fontSize = 24; + sectionHeading.fills = [ + { type: "SOLID", color: { r: 0.07, g: 0.07, b: 0.07 } }, + ]; + sectionHeading.layoutSizingHorizontal = "FILL"; + sectionFrame.appendChild(sectionHeading); // Invoke the caller's content function to populate the section - await section.contentFn(sectionFrame) + await section.contentFn(sectionFrame); - frameIds.push(sectionFrame.id) + frameIds.push(sectionFrame.id); } - return { page, titleNode, frameIds } + return { page, titleNode, frameIds }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createSemanticTokens.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createSemanticTokens.js index 976ae748f..bc3ed2458 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createSemanticTokens.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createSemanticTokens.js @@ -26,59 +26,72 @@ * @returns {Promise<{variables: Record}>} * `variables` maps each token name to its created Variable object. */ -export async function createSemanticTokens(collection, modeIds, tokenMap, runId) { - const variables = {} +export async function createSemanticTokens( + collection, + modeIds, + tokenMap, + runId, +) { + const variables = {}; for (const token of tokenMap) { // Create the variable - const variable = figma.variables.createVariable(token.name, collection, token.type) + const variable = figma.variables.createVariable( + token.name, + collection, + token.type, + ); // Tag for cleanup - variable.setPluginData('dsb_key', `variable/${token.name}`) + variable.setPluginData("dsb_key", `variable/${token.name}`); if (runId) { - variable.setPluginData('dsb_run_id', runId) + variable.setPluginData("dsb_run_id", runId); } // Set values for each mode for (const [modeName, rawValue] of Object.entries(token.values)) { - const modeId = modeIds[modeName] + const modeId = modeIds[modeName]; if (!modeId) { throw new Error( `createSemanticTokens: mode "${modeName}" not found in modeIds for token "${token.name}". ` + - `Available modes: ${Object.keys(modeIds).join(', ')}`, - ) + `Available modes: ${Object.keys(modeIds).join(", ")}`, + ); } - let value = rawValue + let value = rawValue; // Convert hex strings to Figma RGBA for COLOR type - if (token.type === 'COLOR' && typeof rawValue === 'string' && rawValue.startsWith('#')) { - value = hexToFigmaColor(rawValue) + if ( + token.type === "COLOR" && + typeof rawValue === "string" && + rawValue.startsWith("#") + ) { + value = hexToFigmaColor(rawValue); } - variable.setValueForMode(modeId, value) + variable.setValueForMode(modeId, value); } // Set scopes (default: empty array = hidden from property pickers / primitives) - variable.scopes = token.scopes || [] + variable.scopes = token.scopes || []; // Set code syntax per platform if (token.codeSyntax) { if (token.codeSyntax.WEB) { - variable.setVariableCodeSyntax('WEB', token.codeSyntax.WEB) + variable.setVariableCodeSyntax("WEB", token.codeSyntax.WEB); } if (token.codeSyntax.ANDROID) { - variable.setVariableCodeSyntax('ANDROID', token.codeSyntax.ANDROID) + variable.setVariableCodeSyntax("ANDROID", token.codeSyntax.ANDROID); } if (token.codeSyntax.iOS) { - variable.setVariableCodeSyntax('iOS', token.codeSyntax.iOS) + variable.setVariableCodeSyntax("iOS", token.codeSyntax.iOS); } } - variables[token.name] = variable + variables[token.name] = variable; } - return { variables } + return { variables }; } /** @@ -89,20 +102,20 @@ export async function createSemanticTokens(collection, modeIds, tokenMap, runId) * @returns {{ r: number, g: number, b: number, a: number }} */ function hexToFigmaColor(hex) { - let h = hex.replace('#', '') + let h = hex.replace("#", ""); // Expand shorthand #rgb → #rrggbb if (h.length === 3) { h = h - .split('') + .split("") .map((c) => c + c) - .join('') + .join(""); } - const r = parseInt(h.substring(0, 2), 16) / 255 - const g = parseInt(h.substring(2, 4), 16) / 255 - const b = parseInt(h.substring(4, 6), 16) / 255 - const a = h.length === 8 ? parseInt(h.substring(6, 8), 16) / 255 : 1 + const r = parseInt(h.substring(0, 2), 16) / 255; + const g = parseInt(h.substring(2, 4), 16) / 255; + const b = parseInt(h.substring(4, 6), 16) / 255; + const a = h.length === 8 ? parseInt(h.substring(6, 8), 16) / 255 : 1; - return { r, g, b, a } + return { r, g, b, a }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createVariableCollection.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createVariableCollection.js index 45b5109c3..de12663eb 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createVariableCollection.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/createVariableCollection.js @@ -19,31 +19,33 @@ */ export async function createVariableCollection(name, modeNames, runId) { if (!modeNames || modeNames.length === 0) { - throw new Error('createVariableCollection: modeNames must have at least one entry.') + throw new Error( + "createVariableCollection: modeNames must have at least one entry.", + ); } // Create the collection — Figma always creates it with one mode named "Mode 1". - const collection = figma.variables.createVariableCollection(name) + const collection = figma.variables.createVariableCollection(name); // Tag for idempotent cleanup - collection.setPluginData('dsb_key', `collection/${name}`) + collection.setPluginData("dsb_key", `collection/${name}`); if (runId) { - collection.setPluginData('dsb_run_id', runId) + collection.setPluginData("dsb_run_id", runId); } // modeIds accumulator - const modeIds = {} + const modeIds = {}; // Rename the default first mode - const defaultMode = collection.modes[0] - collection.renameMode(defaultMode.modeId, modeNames[0]) - modeIds[modeNames[0]] = defaultMode.modeId + const defaultMode = collection.modes[0]; + collection.renameMode(defaultMode.modeId, modeNames[0]); + modeIds[modeNames[0]] = defaultMode.modeId; // Add additional modes for (let i = 1; i < modeNames.length; i++) { - const newModeId = collection.addMode(modeNames[i]) - modeIds[modeNames[i]] = newModeId + const newModeId = collection.addMode(modeNames[i]); + modeIds[modeNames[i]] = newModeId; } - return { collection, modeIds } + return { collection, modeIds }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/inspectFileStructure.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/inspectFileStructure.js index 0ddcde968..16da49443 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/inspectFileStructure.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/inspectFileStructure.js @@ -27,7 +27,7 @@ export async function inspectFileStructure() { // Read-only inspection — skip invisible content inside instances for a // hundreds-of-times-faster findAllWithCriteria on large libraries. - figma.skipInvisibleInstanceChildren = true + figma.skipInvisibleInstanceChildren = true; const result = { pages: [], @@ -35,7 +35,7 @@ export async function inspectFileStructure() { componentSets: [], textStyles: [], effectStyles: [], - } + }; // --- Pages --- for (const page of figma.root.children) { @@ -43,16 +43,16 @@ export async function inspectFileStructure() { id: page.id, name: page.name, childCount: page.children.length, - }) + }); } // --- Variable collections --- - const collections = await figma.variables.getLocalVariableCollectionsAsync() + const collections = await figma.variables.getLocalVariableCollectionsAsync(); for (const coll of collections) { const variables = await Promise.all( coll.variableIds.map((id) => figma.variables.getVariableByIdAsync(id)), - ) - const variableNames = variables.filter(Boolean).map((v) => v.name) + ); + const variableNames = variables.filter(Boolean).map((v) => v.name); result.variableCollections.push({ id: coll.id, @@ -60,29 +60,31 @@ export async function inspectFileStructure() { modes: coll.modes.map((m) => ({ modeId: m.modeId, name: m.name })), variableCount: coll.variableIds.length, variableNames, - }) + }); } // --- Component sets (and standalone components) --- // We need to load all pages to inspect components across the whole file. - const originalPage = figma.currentPage + const originalPage = figma.currentPage; for (const page of figma.root.children) { - await figma.setCurrentPageAsync(page) + await figma.setCurrentPageAsync(page); // findAllWithCriteria.types accepts an array — one indexed scan returns // both COMPONENT_SET and standalone COMPONENT nodes. - const found = page.findAllWithCriteria({ types: ['COMPONENT_SET', 'COMPONENT'] }) + const found = page.findAllWithCriteria({ + types: ["COMPONENT_SET", "COMPONENT"], + }); for (const node of found) { - if (node.type === 'COMPONENT_SET') { + if (node.type === "COMPONENT_SET") { result.componentSets.push({ id: node.id, name: node.name, variantCount: node.children.length, pageId: page.id, pageName: page.name, - }) - } else if (node.parent && node.parent.type !== 'COMPONENT_SET') { + }); + } else if (node.parent && node.parent.type !== "COMPONENT_SET") { // Standalone component (not a variant inside a COMPONENT_SET) result.componentSets.push({ id: node.id, @@ -90,16 +92,16 @@ export async function inspectFileStructure() { variantCount: 1, pageId: page.id, pageName: page.name, - }) + }); } } } // Restore original page - await figma.setCurrentPageAsync(originalPage) + await figma.setCurrentPageAsync(originalPage); // --- Text styles --- - const textStyles = figma.getLocalTextStyles() + const textStyles = figma.getLocalTextStyles(); for (const ts of textStyles) { result.textStyles.push({ id: ts.id, @@ -107,18 +109,18 @@ export async function inspectFileStructure() { fontFamily: ts.fontName.family, fontStyle: ts.fontName.style, fontSize: ts.fontSize, - }) + }); } // --- Effect styles --- - const effectStyles = figma.getLocalEffectStyles() + const effectStyles = figma.getLocalEffectStyles(); for (const es of effectStyles) { result.effectStyles.push({ id: es.id, name: es.name, effectCount: es.effects.length, - }) + }); } - return result + return result; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/rehydrateState.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/rehydrateState.js index 9604fc756..14c796fee 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/rehydrateState.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/rehydrateState.js @@ -12,84 +12,84 @@ async function rehydrateState(runId) { // Read-only inventory — dsb-tagged nodes are user-created top-level frames, // never inside instances, so skip invisible instance interiors for the // hundreds-of-times-faster findAllWithCriteria. - figma.skipInvisibleInstanceChildren = true + figma.skipInvisibleInstanceChildren = true; - const taggedNodes = {} - const variableCollections = [] - const variables = [] - const styles = [] + const taggedNodes = {}; + const variableCollections = []; + const variables = []; + const styles = []; // Scan all pages for dsb-tagged scene nodes for (const page of figma.root.children) { - await figma.setCurrentPageAsync(page) + await figma.setCurrentPageAsync(page); // Check the page itself - const pageRunId = page.getPluginData('dsb_run_id') - const pageKey = page.getPluginData('dsb_key') + const pageRunId = page.getPluginData("dsb_run_id"); + const pageKey = page.getPluginData("dsb_key"); if (pageKey && (!runId || pageRunId === runId)) { taggedNodes[pageKey] = { nodeId: page.id, type: page.type, name: page.name, - phase: page.getPluginData('dsb_phase') || 'unknown', - } + phase: page.getPluginData("dsb_phase") || "unknown", + }; } // Use findAllWithCriteria with the pluginData index — drastically faster // than findAll + getPluginData on every node, because the engine narrows // to nodes that actually have these keys. const tagged = page.findAllWithCriteria({ - pluginData: { keys: ['dsb_key', 'dsb_run_id'] }, - }) + pluginData: { keys: ["dsb_key", "dsb_run_id"] }, + }); for (const node of tagged) { - const nodeRunId = node.getPluginData('dsb_run_id') - const nodeKey = node.getPluginData('dsb_key') + const nodeRunId = node.getPluginData("dsb_run_id"); + const nodeKey = node.getPluginData("dsb_key"); if (nodeKey && (!runId || nodeRunId === runId)) { taggedNodes[nodeKey] = { nodeId: node.id, type: node.type, name: node.name, - phase: node.getPluginData('dsb_phase') || 'unknown', - } + phase: node.getPluginData("dsb_phase") || "unknown", + }; } } } // Inventory variable collections (variables don't support pluginData — use name-based lookup) - const collections = await figma.variables.getLocalVariableCollectionsAsync() + const collections = await figma.variables.getLocalVariableCollectionsAsync(); for (const coll of collections) { variableCollections.push({ id: coll.id, name: coll.name, modes: coll.modes.map((m) => ({ modeId: m.modeId, name: m.name })), variableCount: coll.variableIds.length, - }) + }); } // Inventory variables (name + collection for idempotency key) - const allVars = await figma.variables.getLocalVariablesAsync() + const allVars = await figma.variables.getLocalVariablesAsync(); for (const v of allVars) { variables.push({ id: v.id, name: v.name, collectionId: v.variableCollectionId, resolvedType: v.resolvedType, - }) + }); } // Inventory styles for (const s of figma.getLocalTextStyles()) { - styles.push({ id: s.id, name: s.name, type: 'TEXT' }) + styles.push({ id: s.id, name: s.name, type: "TEXT" }); } for (const s of figma.getLocalEffectStyles()) { - styles.push({ id: s.id, name: s.name, type: 'EFFECT' }) + styles.push({ id: s.id, name: s.name, type: "EFFECT" }); } for (const s of figma.getLocalPaintStyles()) { - styles.push({ id: s.id, name: s.name, type: 'PAINT' }) + styles.push({ id: s.id, name: s.name, type: "PAINT" }); } return { - runId: runId || 'all', + runId: runId || "all", taggedNodes, taggedNodeCount: Object.keys(taggedNodes).length, variableCollections, @@ -97,5 +97,5 @@ async function rehydrateState(runId) { variables, styleCount: styles.length, styles, - } + }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/validateCreation.js b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/validateCreation.js index 0774051d3..5be576e77 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/validateCreation.js +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-generate-library/scripts/validateCreation.js @@ -28,43 +28,45 @@ * `failed`: Array of objects with the nodeId and a human-readable reason string. */ export function validateCreation(checks) { - const passed = [] - const failed = [] + const passed = []; + const failed = []; for (const check of checks) { - const node = figma.getNodeById(check.nodeId) + const node = figma.getNodeById(check.nodeId); // Node must exist if (!node) { failed.push({ nodeId: check.nodeId, reason: `Node not found. It may not have been created, or was deleted.`, - }) - continue + }); + continue; } - const reasons = [] + const reasons = []; // Type check if (check.expectedType !== undefined && node.type !== check.expectedType) { - reasons.push(`type is "${node.type}", expected "${check.expectedType}"`) + reasons.push(`type is "${node.type}", expected "${check.expectedType}"`); } // Name check if (check.expectedName !== undefined && node.name !== check.expectedName) { - reasons.push(`name is "${node.name}", expected "${check.expectedName}"`) + reasons.push(`name is "${node.name}", expected "${check.expectedName}"`); } // Child count check if (check.expectedChildCount !== undefined) { - if (!('children' in node)) { + if (!("children" in node)) { reasons.push( `node type "${node.type}" does not have children, but expectedChildCount=${check.expectedChildCount} was specified`, - ) + ); } else { - const actualCount = node.children.length + const actualCount = node.children.length; if (actualCount !== check.expectedChildCount) { - reasons.push(`has ${actualCount} children, expected ${check.expectedChildCount}`) + reasons.push( + `has ${actualCount} children, expected ${check.expectedChildCount}`, + ); } } } @@ -72,12 +74,12 @@ export function validateCreation(checks) { if (reasons.length > 0) { failed.push({ nodeId: check.nodeId, - reason: reasons.join('; '), - }) + reason: reasons.join("; "), + }); } else { - passed.push(check.nodeId) + passed.push(check.nodeId); } } - return { passed, failed } + return { passed, failed }; } diff --git a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-use/references/plugin-api-standalone.d.ts b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-use/references/plugin-api-standalone.d.ts index 65389d826..5f5ca1422 100644 --- a/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-use/references/plugin-api-standalone.d.ts +++ b/agents/ai-readiness-estimator-agent/skills/plugin-provided/figma/figma-use/references/plugin-api-standalone.d.ts @@ -9,15 +9,15 @@ * @see https://developers.figma.com/docs/plugins/api/properties/figma-on */ declare type ArgFreeEventType = - | 'selectionchange' - | 'currentpagechange' - | 'close' - | 'timerstart' - | 'timerstop' - | 'timerpause' - | 'timerresume' - | 'timeradjust' - | 'timerdone' + | "selectionchange" + | "currentpagechange" + | "close" + | "timerstart" + | "timerstop" + | "timerpause" + | "timerresume" + | "timeradjust" + | "timerdone"; /** * @see https://developers.figma.com/docs/plugins/api/figma */ @@ -25,15 +25,15 @@ interface PluginAPI { /** * The version of the Figma API this plugin is running on, as defined in your `manifest.json` in the `"api"` field. */ - readonly apiVersion: '1.0.0' + readonly apiVersion: "1.0.0"; /** * The currently executing command from the `manifest.json` file. It is the command string in the `ManifestMenuItem` (more details in the [manifest guide](https://developers.figma.com/docs/plugins/manifest)). If the plugin does not have any menu item, this property is undefined. */ - readonly command: string + readonly command: string; /** * The current editor type this plugin is running in. See also [Setting editor type](https://developers.figma.com/docs/plugins/setting-editor-type). */ - readonly editorType: 'figma' | 'figjam' | 'dev' | 'slides' | 'buzz' + readonly editorType: "figma" | "figjam" | "dev" | "slides" | "buzz"; /** * Return the context the plugin is current running in. * @@ -69,21 +69,27 @@ interface PluginAPI { * } * ``` */ - readonly mode: 'default' | 'textreview' | 'inspect' | 'codegen' | 'linkpreview' | 'auth' + readonly mode: + | "default" + | "textreview" + | "inspect" + | "codegen" + | "linkpreview" + | "auth"; /** * The value specified in the `manifest.json` "id" field. This only exists for Plugins. */ - readonly pluginId?: string + readonly pluginId?: string; /** * Similar to `figma.pluginId` but for widgets. The value specified in the `manifest.json` "id" field. This only exists for Widgets. */ - readonly widgetId?: string + readonly widgetId?: string; /** * The file key of the current file this plugin is running on. * **Only [private plugins](https://help.figma.com/hc/en-us/articles/4404228629655-Create-private-organization-plugins) and Figma-owned resources (such as the Jira and Asana widgets) have access to this.** * To enable this behavior, you need to specify `enablePrivatePluginApi` in your `manifest.json`. */ - readonly fileKey: string | undefined + readonly fileKey: string | undefined; /** * When enabled, causes all node properties and methods to skip over invisible nodes (and their descendants) inside {@link InstanceNode | instances}. * This makes operations like document traversal much faster. @@ -113,7 +119,7 @@ interface PluginAPI { * The benefit of enabling this flag is that document traversal methods, {@link ChildrenMixin.findAll} and {@link ChildrenMixin.findOne}, can be up to several times faster in large documents that have invisible instance children. * {@link ChildrenMixin.findAllWithCriteria} can be up to hundreds of times faster in large documents. */ - skipInvisibleInstanceChildren: boolean + skipInvisibleInstanceChildren: boolean; /** * Note: This API is only available in FigJam * @@ -121,19 +127,19 @@ interface PluginAPI { * * Read more in the [timer section](https://developers.figma.com/docs/plugins/api/figma-timer). */ - readonly timer?: TimerAPI + readonly timer?: TimerAPI; /** * This property contains methods used to read and set the viewport, the user-visible area of the current page. * * Read more in the [viewport section](https://developers.figma.com/docs/plugins/api/figma-viewport). */ - readonly viewport: ViewportAPI + readonly viewport: ViewportAPI; /** * Note: `currentuser` must be specified in the permissions array in `manifest.json` to access this property. * * This property contains details about the current user. */ - readonly currentUser: User | null + readonly currentUser: User | null; /** * Note: This API is only available in FigJam. * @@ -141,35 +147,35 @@ interface PluginAPI { * * This property contains details about the active users in the file. `figma.activeUsers[0]` will match `figma.currentUser` for the `id`, `name`, `photoUrl`, `color`, and `sessionId` properties. */ - readonly activeUsers: ActiveUser[] + readonly activeUsers: ActiveUser[]; /** * Note: `textreview` must be specified in the capabilities array in `manifest.json` to access this property. * * This property contains methods that enable text review features in your plugin. */ - readonly textreview?: TextReviewAPI + readonly textreview?: TextReviewAPI; /** * This property contains methods used to integrate with the Dev Mode codegen functionality. * * Read more in the [codegen section](https://developers.figma.com/docs/plugins/api/figma-codegen). */ - readonly codegen: CodegenAPI + readonly codegen: CodegenAPI; /** * This property contains methods used to integrate with the Figma for VS Code extension. If `undefined`, the plugin is not running in VS Code. * * Read more in [Dev Mode plugins in Visual Studio Code](https://developers.figma.com/docs/plugins/working-in-dev-mode#dev-mode-plugins-in-visual-studio-code) */ - readonly vscode?: VSCodeAPI + readonly vscode?: VSCodeAPI; /** * Caution: This is a private API only available to [Figma partners](https://www.figma.com/partners/) */ - readonly devResources?: DevResourcesAPI + readonly devResources?: DevResourcesAPI; /** * Note: `payments` must be specified in the permissions array in `manifest.json` to access this property. * * This property contains methods for plugins that require payment. */ - readonly payments?: PaymentsAPI + readonly payments?: PaymentsAPI; /** * Closes the plugin. You should always call this function once your plugin is done running. When called, any UI that's open will be closed and any `setTimeout` or `setInterval` timers will be cancelled. * @@ -229,7 +235,7 @@ interface PluginAPI { * } * ``` */ - closePlugin(message?: string): void + closePlugin(message?: string): void; /** * Shows a notification on the bottom of the screen. * @@ -275,7 +281,7 @@ interface PluginAPI { * * An alternative way to show a message to the user is to pass a message to the {@link PluginAPI.closePlugin} function. */ - notify(message: string, options?: NotificationOptions): NotificationHandler + notify(message: string, options?: NotificationOptions): NotificationHandler; /** * Commits actions to undo history. This does not trigger an undo. * @@ -298,11 +304,11 @@ interface PluginAPI { * figma.closePlugin(); * ``` */ - commitUndo(): void + commitUndo(): void; /** * Triggers an undo action. Reverts to the last `commitUndo()` state. */ - triggerUndo(): void + triggerUndo(): void; /** * Saves a new version of the file and adds it to the version history of the file. Returns the new version id. * @param title - The title of the version. This must be a non-empty string. @@ -342,7 +348,10 @@ interface PluginAPI { * Typically, manual changes that precede the execution of `saveVersionHistoryAsync()` will be included. If you want to use `saveVersionHistoryAsync()` before the plugin makes * additional changes, make sure to use the method with an async/await or a Promise. */ - saveVersionHistoryAsync(title: string, description?: string): Promise + saveVersionHistoryAsync( + title: string, + description?: string, + ): Promise; /** * Open a url in a new tab. * @@ -350,7 +359,7 @@ interface PluginAPI { * * In the VS Code Extension, this API is required to open a url in the browser. Read more in [Dev Mode plugins in Visual Studio Code](https://developers.figma.com/docs/plugins/working-in-dev-mode#dev-mode-plugins-in-visual-studio-code). */ - openExternal(url: string): void + openExternal(url: string): void; /** * Enables you to render UI to interact with the user, or simply to access browser APIs. This function creates a modal dialog with an `