Skip to content
Merged
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
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,9 @@ See `.agent/tools/terminal/terminal-title.md` for customization options.
**Quality Control & Monitoring:**

- **Multi-Platform Analysis**: SonarCloud, CodeFactor, Codacy, CodeRabbit, Qlty, Gemini Code Assist, Snyk
- **Performance Auditing**: PageSpeed Insights and Lighthouse integration
- **Performance Auditing**: PageSpeed Insights, Lighthouse, Core Web Vitals (`/performance` command)
Copy link

Choose a reason for hiding this comment

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

/performance appears to be implemented primarily via Chrome DevTools MCP + Lighthouse/CWV; if it doesn’t actually call PageSpeed Insights, mentioning “PageSpeed Insights” here (and in the command table) may be misleading.

Other Locations
  • README.md:1409

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎

- **SEO Debugging**: Open Graph validation, favicon checker, social preview testing
- **Email Deliverability**: SPF/DKIM/DMARC/MX validation, blacklist checking
- **Uptime Monitoring**: Updown.io integration for website and SSL monitoring

## **Imported Skills**
Expand Down Expand Up @@ -1404,6 +1406,7 @@ Configure time tracking per-repo via `.aidevops.json`.
| `/code-standards` | Check against documented quality standards |
| `/code-simplifier` | Simplify and refine code for clarity and maintainability |
| `/list-keys` | List all configured API keys and their storage locations |
| `/performance` | Web performance audit (Core Web Vitals, Lighthouse, PageSpeed) |
| `/pr` | Unified PR workflow (orchestrates all checks) |

**Content Workflow**:
Expand All @@ -1421,6 +1424,19 @@ Configure time tracking per-repo via `.aidevops.json`.
| `/keyword-research-extended` | Full SERP analysis with weakness detection |
| `/webmaster-keywords` | Keywords from GSC + Bing for your verified sites |

**SEO Debugging** (subagents in `seo/`):
Copy link

Choose a reason for hiding this comment

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

This references subagents in seo/, but the repo sources are under .agent/seo/ (and typically deployed to ~/.aidevops/agents/seo/); consider clarifying the intended path to avoid confusion.

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎


| Subagent | Purpose |
|----------|---------|
| `@debug-opengraph` | Validate Open Graph meta tags, preview social sharing |
| `@debug-favicon` | Validate favicon setup across platforms (ico, apple-touch, manifest) |

Choose a reason for hiding this comment

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

medium

For improved clarity and technical accuracy, it's better to use the full term apple-touch-icon instead of the abbreviated apple-touch. This ensures the documentation is precise and unambiguous for developers.

Suggested change
| `@debug-favicon` | Validate favicon setup across platforms (ico, apple-touch, manifest) |
| `@debug-favicon` | Validate favicon setup across platforms (ico, apple-touch-icon, manifest) |


**Email Deliverability**:

| Command | Purpose |
|---------|---------|
| `/email-health-check` | Check SPF/DKIM/DMARC/MX records and blacklist status |

**Release Workflow** (in order):

| Command | Purpose |
Expand All @@ -1431,6 +1447,8 @@ Configure time tracking per-repo via `.aidevops.json`.
| `/release` | Full release workflow (bump, tag, GitHub release, auto-changelog) |
| `/postflight` | Verify release health after deployment |

**Auto-Task Completion**: The release workflow automatically marks tasks as complete when commit messages reference them (e.g., `Closes t037`, `Fixes t042`). Tasks in `TODO.md` are updated with `completed:` timestamps.

**Documentation**:

| Command | Purpose |
Expand Down
Loading