start-work-on-story — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited start-work-on-story (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Story/Ticket ID: $ARGUMENTS
Follow this workflow to start working on a new story or ticket efficiently and safely.
#### Branch Naming Convention:
Name the ticket after the shortcut ticket being worked on
# For new features
git checkout -b feat/sc-xxxx-brief-description
# For bug fixes
git checkout -b fix/sc-yyyy-brief-description
# For documentation
git checkout -b docs/sc-xxxx-brief-description
# For refactoring/technical work
git checkout -b refactor/sc-xxxx-brief-description#### Initial Setup:
# Ensure you're on latest main
git checkout main
git pull origin main
# Create and switch to new branch
git checkout -b [branch-name]
# Verify clean working directory
git status#### Requirements Review:
#### Technical Planning:
#### Pre-Development Checks:
# Install/update dependencies
bun install
# Run type checking
bun run build
# Start development server
bun run dev#### Project-Specific Setup:
src/types/#### Start Small & Iterative:
#### Code Quality Standards:
any types)src/types/index.ts if needed#### Development Testing:
# Run type checking
bun run build
# Manual testing with MCP client
# Test all acceptance criteria scenarios
# Test error states and edge cases#### Testing Checklist:
#### Code Documentation:
#### Progress Communication:
#### Final Validation:
# Clean build
bun run build
# Final manual test of acceptance criteria
# Check for console errors or warnings#### Code Review Prep:
#### Server Development:
#### API Integration:
# Development workflow
bun run dev # Start development server
bun run build # Type check and build
bun run start # Run built server
# Git workflow
git status # Check current changes
git add . # Stage changes
git commit -m "..." # Commit with conventional format + [sc-xxxxx] or "refs sc-xxxxx"
git push origin [branch-name] # Push for review#### Commit Message Examples with Shortcut Integration:
# Using [sc-xxxxx] format
git commit -m "feat: add dataset search functionality [sc-45538]"
git commit -m "fix: resolve API timeout issue [sc-45539]"
git commit -m "docs: update MCP server documentation [sc-45540]"
# Using "refs sc-xxxxx" format
git commit -m "feat: implement user authentication - refs sc-45538"
git commit -m "refactor: optimize search performance - refs sc-45539"Before marking the story complete:
Remember: Start with the minimum viable implementation that meets acceptance criteria. You can always iterate and improve in follow-up stories.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.