Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/metrics/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"changes": 2,
"errors": 0,
"optouts": 0
}
}
13 changes: 12 additions & 1 deletion .github/reports/audits/readme-audit-2026-05-31.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,18 @@ accDescr: Flowchart showing the VS Code configuration hierarchy with three main
---
flowchart TD
A[VS Code Workspace] --> B[Extensions]
...
A --> C[Tasks]
A --> D[Settings]
B --> E[AI Agents]
C --> F[Build Automation]
D --> G[Linting Tools]
D --> H[Testing]
D --> I[EditorConfig]
D --> J[Keybindings]
G --> K[ESLint]
G --> L[Stylelint]
G --> M[Markdownlint]
H --> N[Jest]
```

**Verification:** Accessibility attributes now present; compliant with WCAG 2.2 Level AA - 1.1.1 Non-text Content.
Expand Down
16 changes: 10 additions & 6 deletions hooks/session-logger/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
---
file_type: "documentation"
title: "session-logger Hook"
description: "Captures structured session activity events for audit and troubleshooting."
version: "v0.1.0"
last_updated: "2026-05-31"
owners: ["LightSpeedWP Team"]
file_type: readme
title: session-logger hook
description: Captures structured session activity events for audit and troubleshooting.
version: v0.1.0
last_updated: '2026-05-28'
owners:
- LightSpeedWP Team
---

*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)
16 changes: 10 additions & 6 deletions hooks/tool-guardian/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
---
file_type: "documentation"
title: "tool-guardian Hook"
description: "Prevents unsafe or disallowed tool operations based on configured guardrails."
version: "v0.1.0"
last_updated: "2026-05-31"
owners: ["LightSpeedWP Team"]
file_type: readme
title: tool-guardian hook
description: Prevents unsafe or disallowed tool operations based on configured guardrails.
version: v0.1.0
last_updated: '2026-05-28'
owners:
- LightSpeedWP Team
---

*Maintained with ❤️ by the 🚀 LightSpeedWP Automation Team*
[Org Profile](https://github.com/lightspeedwp/.github/tree/main/profile)

*Maintained with ❤️ by the 🚀 LightSpeedWP Automation Team*
[Org Profile](https://github.com/lightspeedwp/.github/tree/main/profile)
4 changes: 2 additions & 2 deletions plugins/lightspeed-github-ops/hooks/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
file_type: "documentation"
file_type: readme
title: "Plugin Hooks"
description: "Optional plugin-local hooks for lightspeed-github-ops"
version: "1.0"
Expand All @@ -8,6 +8,6 @@ maintainer: "LightSpeed Engineering"
tags: ["hooks", "plugins", "github-ops"]
---

# hooks
# Plugin Hooks

Optional plugin-local hooks live here.
58 changes: 58 additions & 0 deletions schema/frontmatter.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,64 @@
},
"required": ["file_type", "description"],
"additionalProperties": true
},
{
"title": "README Files (README.md)",
"description": "Module and project README documentation files.",
"allOf": [
{
"$ref": "#/definitions/commonFields"
}
],
"properties": {
"file_type": {
"const": "readme"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "string"
},
"last_updated": {
"type": "string"
},
"maintainer": {
"type": "string"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"license": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"domain": {
"$ref": "#/definitions/commonFields/properties/domain"
},
"stability": {
"$ref": "#/definitions/commonFields/properties/stability"
},
"deprecated": {
"$ref": "#/definitions/commonFields/properties/deprecated"
},
"replacement": {
"$ref": "#/definitions/commonFields/properties/replacement"
}
},
"required": ["file_type", "title", "description"],
"additionalProperties": true
}
],
"examples": [
Expand Down
4 changes: 3 additions & 1 deletion scripts/agents/includes/__tests__/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
file_type: "documentation"
file_type: readme
name: "Utility Module Test Suite"
title: Utility Module Test Suite
description: Comprehensive Jest tests for labelling agent utility modules
Expand All @@ -9,5 +9,7 @@ maintainer: "LightSpeed Engineering"
tags: [testing, jest, utilities, labelling]
---

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The README file is missing a main H1 heading (# Utility Module Test Suite). Every README should have a clear H1 heading matching its frontmatter title to ensure proper rendering and structure.

Suggested change
---
---
# Utility Module Test Suite


# Utility Module Test Suite

*Have questions? Ping us on GitHub! 🐙 Made with 💚 by LightSpeedWP*
[Contact](https://lightspeedwp.agency/contact)
4 changes: 2 additions & 2 deletions scripts/validation/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
file_type: documentation
name: Frontmatter Validation
file_type: readme
title: Frontmatter Validation
description: Comprehensive frontmatter validation scripts for LightSpeedWP .github
repository ensuring schema compliance and consistency
version: 1.0.1
Expand Down
Loading