Last active
November 2, 2025 18:47
-
-
Save spartDev/1a7efb5585b7e1ef42f6ebff51ac62a0 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "https://jsonfeed.org/version/1.1", | |
| "title": "Example Team Prompt Library", | |
| "description": "A sample collection of prompts for software development teams", | |
| "home_page_url": "https://example.com", | |
| "feed_url": "https://example.com/prompts.json", | |
| "icon": "https://example.com/icon.png", | |
| "authors": [ | |
| { | |
| "name": "Engineering Team", | |
| "url": "https://example.com/team" | |
| } | |
| ], | |
| "items": [ | |
| { | |
| "id": "prompt-001", | |
| "title": "Code Review Checklist", | |
| "content_text": "Please review the following code for:\n\n1. Security vulnerabilities\n2. Performance issues\n3. Code style consistency\n4. Test coverage\n5. Documentation completeness\n\nProvide specific feedback on each area.", | |
| "tags": [ | |
| "code-review", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-15T10:00:00Z", | |
| "_category": "Engineering", | |
| "_category_color": "#3b82f6" | |
| }, | |
| { | |
| "id": "prompt-002", | |
| "title": "Bug Report Analysis", | |
| "content_text": "Analyze this bug report and provide:\n\n1. Root cause analysis\n2. Recommended fix approach\n3. Potential side effects\n4. Testing strategy\n5. Prevention measures for similar bugs", | |
| "tags": [ | |
| "debugging", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-16T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-003", | |
| "title": "API Design Review", | |
| "content_text": "Review this API design considering:\n\n1. RESTful principles\n2. Security (authentication, authorization)\n3. Rate limiting needs\n4. Versioning strategy\n5. Documentation requirements\n6. Error handling patterns\n\nProvide recommendations for improvements.", | |
| "tags": [ | |
| "api", | |
| "design", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-17T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-004", | |
| "title": "Documentation Writer", | |
| "content_text": "Create comprehensive documentation for this feature including:\n\n1. Overview and purpose\n2. Getting started guide\n3. API reference\n4. Code examples\n5. Common use cases\n6. Troubleshooting section\n7. FAQs\n\nUse clear, concise language suitable for developers.", | |
| "tags": [ | |
| "documentation", | |
| "technical-writing" | |
| ], | |
| "date_published": "2025-01-18T10:00:00Z", | |
| "_category": "Documentation", | |
| "_category_color": "#10b981" | |
| }, | |
| { | |
| "id": "prompt-005", | |
| "title": "Database Schema Review", | |
| "content_text": "Review this database schema for:\n\n1. Normalization and data integrity\n2. Index optimization\n3. Query performance\n4. Scalability concerns\n5. Migration strategy\n6. Backup and recovery considerations\n\nProvide specific recommendations.", | |
| "tags": [ | |
| "database", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-19T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-006", | |
| "title": "Technical Interview Question Generator", | |
| "content_text": "Generate 5 technical interview questions for a [ROLE] position focusing on:\n\n1. Problem-solving skills\n2. System design thinking\n3. Code quality awareness\n4. Communication abilities\n5. Real-world scenarios\n\nInclude evaluation criteria for each question.", | |
| "tags": [ | |
| "hiring", | |
| "interviews" | |
| ], | |
| "date_published": "2025-01-20T10:00:00Z", | |
| "_category": "Hiring", | |
| "_category_color": "#f59e0b" | |
| }, | |
| { | |
| "id": "prompt-007", | |
| "title": "Performance Optimization Analysis", | |
| "content_text": "Analyze this code/system for performance bottlenecks:\n\n1. Identify slow operations\n2. Suggest caching strategies\n3. Recommend algorithm improvements\n4. Database query optimization\n5. Resource usage analysis\n6. Scalability improvements\n\nPrioritize recommendations by impact.", | |
| "tags": [ | |
| "performance", | |
| "optimization", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-21T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-008", | |
| "title": "Security Audit Prompt", | |
| "content_text": "Perform a security audit focusing on:\n\n1. Authentication and authorization\n2. Input validation and sanitization\n3. SQL injection vulnerabilities\n4. XSS attack vectors\n5. CSRF protection\n6. Sensitive data exposure\n7. Dependency vulnerabilities\n\nProvide severity ratings and remediation steps.", | |
| "tags": [ | |
| "security", | |
| "audit", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-22T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-009", | |
| "title": "Test Strategy Designer", | |
| "content_text": "Design a comprehensive test strategy for this feature:\n\n1. Unit test coverage\n2. Integration test scenarios\n3. End-to-end test flows\n4. Edge cases to cover\n5. Performance testing needs\n6. Security testing requirements\n\nProvide specific test cases for each category.", | |
| "tags": [ | |
| "testing", | |
| "qa", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-23T10:00:00Z", | |
| "_category": "Engineering" | |
| }, | |
| { | |
| "id": "prompt-010", | |
| "title": "Refactoring Advisor", | |
| "content_text": "Suggest refactoring improvements for this code:\n\n1. Code smell identification\n2. Design pattern opportunities\n3. Readability improvements\n4. Maintainability enhancements\n5. Performance optimizations\n6. Breaking change considerations\n\nProvide before/after examples where applicable.", | |
| "tags": [ | |
| "refactoring", | |
| "code-quality", | |
| "engineering" | |
| ], | |
| "date_published": "2025-01-24T10:00:00Z", | |
| "_category": "Engineering" | |
| } | |
| ], | |
| "_checksum": "fdcd1bb6462b76bb31494b84841d55074229f43457fda837aaec1fd19b4f3451", | |
| "_checksum_algorithm": "sha256" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment