🎯

check-product-standards

🎯Skill

from phrazzld/claude-config

VibeIndex|
What it does

Verifies Misty Step product standards by checking version display, attribution, and contact link for all shipped products.

πŸ“¦

Part of

phrazzld/claude-config(176 items)

check-product-standards

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add phrazzld/claude-config --skill check-product-standards
3Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

|

Overview

# /check-product-standards

Verify every Misty Step product meets baseline shipping standards.

Why This Exists

If we charge money, users need:

  • Version info β€” Know what they're running, check for updates
  • Attribution β€” Know who made it, builds trust
  • Contact method β€” Get help when something goes wrong

These are non-negotiable for shipped products.

Required Elements

1. Version Display

Requirement: Visible version number that links to releases page.

Location: Footer, settings, or about section

Format:

```

v1.2.3 β†’ links to /releases or GitHub releases

```

Implementation patterns:

```tsx

// From package.json or build-time injection

v{process.env.NEXT_PUBLIC_APP_VERSION}

```

Check for:

  • [ ] Version visible somewhere in UI
  • [ ] Version is dynamic (from package.json, not hardcoded)
  • [ ] Version links to releases/changelog page

2. Misty Step Attribution

Requirement: "A Misty Step project" or similar, linking to MistyStep.io

Location: Footer

Format:

```

A Misty Step project β†’ links to https://mistystep.io

```

Implementation patterns:

```tsx

href="https://mistystep.io"

target="_blank"

rel="noopener noreferrer"

className="text-muted-foreground text-sm hover:text-foreground"

>

A Misty Step project

```

Acceptable variations:

  • "A Misty Step project"
  • "Built by Misty Step"
  • "From Misty Step"
  • Misty Step logo with link

Check for:

  • [ ] Attribution text/logo present
  • [ ] Links to https://mistystep.io
  • [ ] Opens in new tab (external link)

3. Contact/Support Link

Requirement: Way to contact for help, feedback, or issues.

Location: Footer, help menu, or settings

Format:

```

Contact | Feedback | Support β†’ mailto:hello@mistystep.io

```

Implementation patterns:

```tsx

Contact

// Or with subject line

Feedback

```

Acceptable variations:

  • "Contact"
  • "Support"
  • "Feedback"
  • "Help"
  • "Get in touch"
  • Email icon with mailto link

Check for:

  • [ ] Contact method visible
  • [ ] Links to hello@mistystep.io (or specific product email)
  • [ ] Accessible without authentication (can report issues even if logged out)

Audit Process

Step 1: Find Footer/Chrome Components

```bash

# Common patterns

rg -l "footer" --type tsx --type jsx

rg -l "Footer" --type tsx --type jsx

rg -l "layout" --type tsx --type jsx

# Look for version references

rg "version|VERSION" --type tsx --type jsx --type ts

# Look for mistystep references

rg -i "misty.?step" --type tsx --type jsx

```

Step 2: Check Each Requirement

For each requirement, verify:

  1. Presence β€” Element exists in the UI
  2. Functionality β€” Links work correctly
  3. Accessibility β€” Visible on all pages, not hidden

Step 3: Report Findings

```markdown

Product Standards Audit

| Requirement | Status | Location | Issue |

|-------------|--------|----------|-------|

| Version display | ❌ Missing | - | No version shown |

| Version links to releases | ❌ Missing | - | No releases page |

| Misty Step attribution | βœ… Present | Footer.tsx:42 | - |

| Attribution links correctly | βœ… Present | - | - |

| Contact link | ⚠️ Partial | Footer.tsx:45 | Links to Twitter, not email |

Issues to Create

  1. [P1] Add version display to footer
  2. [P1] Create /releases page or link to GitHub releases
  3. [P1] Add contact email link (hello@mistystep.io)

```

Priority

P1 (Fundamentals) β€” These are baseline shipping requirements.

Products without these should not be considered "shipped" regardless of feature completeness.

Integration with /groom

Groom invokes this skill as part of Step 4 (Issue-Creator Skills):

```

/log-product-standards-issues

```

Creates issues for any missing requirements with:

  • Label: domain/product-standards
  • Priority: priority/p1

Quick Fix Patterns

Minimal Footer Component

```tsx

// components/Footer.tsx

export function Footer() {

const version = process.env.NEXT_PUBLIC_APP_VERSION || 'dev'

return (

v{version}

Β·

href="https://mistystep.io"

target="_blank"

rel="noopener noreferrer"

className="hover:text-foreground"

>

A Misty Step project

Β·

href="mailto:hello@mistystep.io"

className="hover:text-foreground"

>

Contact

)

}

```

Inject Version at Build Time

```js

// next.config.js

const { version } = require('./package.json')

module.exports = {

env: {

NEXT_PUBLIC_APP_VERSION: version,

},

}

```

Simple Releases Page

```tsx

// app/releases/page.tsx

export default function ReleasesPage() {

return (

Releases

View full changelog on{' '}

GitHub Releases

)

}

```

Related Skills

  • /check-landing β€” Landing page audit (includes footer checks)
  • /brand-builder β€” Establishes brand profile
  • /changelog β€” Creates releases infrastructure