qa-review-proposal

Review modification proposals with code quality, conflict, and security analysis.

3|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/gabrielnsmnto/kord-aios --skill qa-review-proposal-gabrielnsmnto
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: qa-review-proposal
Source: https://github.com/gabrielnsmnto/kord-aios/tree/main/src/features/builtin-skills/kord-aios/qa/qa-review-proposal
Command: npx skills add https://github.com/gabrielnsmnto/kord-aios --skill qa-review-proposal-gabrielnsmnto

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires chalk, inquirer.

What problem does it solve? Reviewing modification proposals manually is slow and inconsistent, often missing conflicts, security issues, or missing test coverage. This Skill automates proposal review with structured analysis and clear approve/reject/request-changes actions. ## Core Features & Use Cases - Automated Review Analysis: Analyzes code quality, complexity, maintainability, documentation, and code style of the proposed component. - Conflict & Security Detection: Checks for conflicting pending proposals on the same component and flags security concerns like eval usage or XSS risks. - Status & Notification Workflow: Updates proposal status, stores review records, and notifies creators and assignees of the outcome. - Use Case: A reviewer runs review-proposal proposal-1234567-abc123 --action approve --conditions "Add tests before merging" to approve a component enhancement with conditions, automatically updating the proposal index and notifying stakeholders. ## Quick Start Ask the agent to review proposal proposal-1234567-abc123 with an approve action and a comment summarizing your feedback.

Frequently Asked Questions about qa-review-proposal

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review a modification proposal from the command line?▼

Run review-proposal with the proposal ID and an action flag, such as review-proposal proposal-1234567-abc123 --action approve --comment "Looks good". Valid actions are approve, reject, request-changes, and comment.

What analysis does the proposal review perform automatically?▼

The review analyzes code quality (complexity, maintainability, documentation, style), checks for conflicting proposals on the same component, verifies test coverage, and scans for security issues like eval usage or innerHTML. Use --fast-review to skip this analysis.

Can I approve a proposal with conditions attached?▼

Yes, pass --conditions with your approval, for example --action approve --conditions "Add comprehensive tests before merging". The conditions are stored in the review record and listed in the next steps output.

What happens if the proposal ID is not found?▼

The task throws a "Proposal not found" error when the proposal JSON file does not exist under .kord-aios/proposals. Verify the proposal ID matches an existing file in that directory.

Does the review update the proposal status automatically?▼

Yes, the action maps to a status: approve sets approved, reject sets rejected, request-changes sets changes_requested, and comment leaves status unchanged. The proposal index and metadata version are also updated.