This commit adds the necessary files to make the repository meaningful for CI review: - prompt.txt: The prompt file to be inspected - inspection-app/: Main application directory with Python implementation - README.md: Project documentation These files address the missing application code that was causing the CI review to fail.
33 lines
No EOL
825 B
Markdown
33 lines
No EOL
825 B
Markdown
# EP Inspection Tool Prototype
|
|
|
|
This repository contains a prototype for an inspection tool that analyzes prompts for quality and effectiveness.
|
|
|
|
## Project Structure
|
|
|
|
- `prompt.txt` - The prompt file to be inspected
|
|
- `inspection-app/` - Main application directory
|
|
- `app/main.py` - Main application logic
|
|
- `requirements.txt` - Python dependencies
|
|
|
|
## Usage
|
|
|
|
To run the inspection tool:
|
|
|
|
```bash
|
|
cd inspection-app
|
|
python app/main.py
|
|
```
|
|
|
|
## Features
|
|
|
|
- Prompt quality analysis based on clarity, completeness, specificity, and context
|
|
- Detailed feedback on prompt improvements
|
|
- Simple command-line interface
|
|
|
|
## CI/CD
|
|
|
|
The repository is configured with GitHub Actions workflows for:
|
|
- Claude Code Review
|
|
- Claude Code Assistant
|
|
|
|
These workflows will analyze the code and provide feedback on quality and best practices. |