Risks and Considerations
Purpose
To ensure a systematic review of potential risks, edge cases, and important technical considerations for planning documents, particularly for GitHub Issues and new Claude Code Skills. This practice aids in proactive problem identification, robust planning, and the creation of more resilient and well-thought-out features and guidelines.
Analysis Checklist
When drafting or reviewing a planning document, you must perform an analysis covering the following areas:
Security Implications:
- Could this change introduce vulnerabilities (e.g., XSS, CSRF, data leaks)?
- Does it properly handle authentication and authorization?
- Are user inputs validated and sanitized?
Performance Considerations:
- Could this change negatively impact system performance (e.g., increase page load time, database query time, function execution time)?
- Are there opportunities for optimization (e.g., caching, code splitting, parallel execution, efficient algorithms)?
Scalability Concerns:
- Is the proposed solution designed to handle growth in users, data, and traffic?
- Could any part of the design become a bottleneck at scale?
- If you take one of the underlying variables in the assumptions of the business logic to the extreme, does the solution start to break down?
Cross-Browser/Platform Compatibility:
- Will the proposed changes work consistently across all supported browsers and platforms (web, desktop, mobile)?
- Are there any known platform-specific issues to address?
Data Privacy Implications:
- Does this change handle user data responsibly?
- Are there any GDPR or other privacy regulation concerns to address?
Articulating Findings
After performing the analysis, you should articulate your findings clearly and actionably within the conversation or even directly on the planning document as a dedicated "Warnings & Considerations" section to highlight potential risks, suggest mitigation strategies, and note important technical details that must be handled during implementation.
1---2name: risks-and-considerations3description: Use when reviewing planning documents for security, performance, and scalability risks.4---5
6# Risks and Considerations
7
8## Purpose
9
10To ensure a systematic review of potential risks, edge cases, and important technical considerations for planning documents, particularly for GitHub Issues and new Claude Code Skills. This practice aids in proactive problem identification, robust planning, and the creation of more resilient and well-thought-out features and guidelines.
11
12## Analysis Checklist
13
14When drafting or reviewing a planning document, you must perform an analysis covering the following areas:
15
161. **Security Implications**:
17 - Could this change introduce vulnerabilities (e.g., XSS, CSRF, data leaks)?
18 - Does it properly handle authentication and authorization?
19 - Are user inputs validated and sanitized?
20
212. **Performance Considerations**:
22 - Could this change negatively impact system performance (e.g., increase page load time, database query time, function execution time)?
23 - Are there opportunities for optimization (e.g., caching, code splitting, parallel execution, efficient algorithms)?
24
253. **Scalability Concerns**:
26 - Is the proposed solution designed to handle growth in users, data, and traffic?
27 - Could any part of the design become a bottleneck at scale?
28 - If you take one of the underlying variables in the assumptions of the business logic to the extreme, does the solution start to break down?
29
304. **Cross-Browser/Platform Compatibility**:
31 - Will the proposed changes work consistently across all supported browsers and platforms (web, desktop, mobile)?
32 - Are there any known platform-specific issues to address?
33
345. **Data Privacy Implications**:
35 - Does this change handle user data responsibly?
36 - Are there any GDPR or other privacy regulation concerns to address?
37
38## Articulating Findings
39
40After performing the analysis, you should articulate your findings clearly and actionably within the conversation or even directly on the planning document as a dedicated "Warnings & Considerations" section to highlight potential risks, suggest mitigation strategies, and note important technical details that must be handled during implementation.