Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
Before using Cursor Dev Commands, ensure the following setup is completed:
Sign in to like and favorite skills
Before using Cursor Dev Commands, ensure the following setup is completed:
# Install GitHub CLI (if not already installed) # macOS: brew install gh # Windows: winget install --id GitHub.cli # Login to GitHub gh auth login # Add required scopes for GitHub Projects gh auth refresh -h github.com -s read:project -s project # Verify authentication gh auth status
# macOS brew install jq # Linux (Ubuntu/Debian) sudo apt-get install jq # Windows winget install jqlang.jq
Ensure the following scripts exist in your project:
.cursor/script/setsp.ps (macOS/Linux).cursor/script/setsp.ps1 (Windows)This project uses Cursor Dev Commands located in
.cursor/commands/ directory.
Available commands:
/issue - Get GitHub issue information, create branch, and save to issue.md (with optional auto-workflow)/plan - Create implementation plan/breakdown - Create individual FE/BE issues based on Plan and calculate Story Points/dev - Execute development tasks with tests/test - Run tests and save evidence/pr - Create pull requestBased on the requirement issue created by PM, create branch, plan, calculate SP, and split tasks into FE/BE issues.
/issue {requirement_issue_number} - Fetch issue, create branch, and document/plan {requirement_issue_number} - Create implementation plan/breakdown {requirement_issue_number} - Create individual FE/BE issues based on Plan and calculate Story PointsTriggered by the FE/BE Issues created in Phase 1, execute the following development cycle for each issue.
/dev {issue_number} - Execute development (for FE or BE issue)/test {issue_number} - Run tests and collect evidence/pr {issue_number} - Create pull request (triggers deployment and manual testing)Reflects the workflow sequence (plan → breakdown)
/issue {issue_number} --auto - Execute full pipeline automatically (issue → plan → breakdown → dev → test → pr)/issue {issue_number} --auto --skip-plan - Skip plan for rapid developmentdocs/issues/{issue_number}/evidence/ (except for final reports)backend/ or frontend/ directoriesbackend/ ├── src/ │ ├── domain/ │ │ └── alert/ │ │ ├── alertSchema.ts │ │ ├── alertModel.ts │ │ └── alertService.ts │ └── api/ │ └── alertRoutes.ts └── tests/ frontend/ ├── src/ │ ├── components/ │ │ └── AuthorGroupedTable.vue │ └── pages/ │ └── index.vue └── tests/
# Backend yarn dev # Start development server yarn test:unit # Run tests yarn db:migrate # Run database migrations yarn build # Build for production # Frontend yarn dev # Start development server yarn test # Run tests yarn build # Build for production