Invoke this skill in the following situations:
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionpaddleocr-text-recognitionExecute the skills CLI command in your project's root directory to begin installation:
Fetches paddleocr-text-recognition from paddlepaddle/paddleocr and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate paddleocr-text-recognition. Access via /paddleocr-text-recognition in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
75.0K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
75.0K
stars
Invoke this skill in the following situations:
Do not use this skill in the following situations:
⛔ MANDATORY RESTRICTIONS - DO NOT VIOLATE ⛔
python scripts/ocr_caller.pyIf the script execution fails (API not configured, network error, etc.):
Identify the input source:
--file-url parameter--file-path parameter--file-pathInput type note:
Execute OCR:
python scripts/ocr_caller.py --file-url "URL provided by user" --pretty
Or for local files:
python scripts/ocr_caller.py --file-path "file path" --pretty
Default behavior: save raw JSON to a temp file:
--output is omitted, the script saves automatically under the system temp directory<system-temp>/paddleocr/text-recognition/results/result_<timestamp>_<id>.json--output is provided, it overrides the default temp-file destination--stdout is provided, JSON is printed to stdout and no file is savedResult saved to: /absolute/path/...--stdout only when you explicitly want to skip file persistenceParse JSON response:
ok field: true means success, false means errortext field contains all recognized text--stdout is used, parse the stdout JSON directlyok is false, display error.messagePresent results to user:
CRITICAL: Always display the COMPLETE recognized text to the user. Do NOT truncate or summarize the OCR results.
text fieldtext content to the user, no matter how long it isCorrect approach:
I've extracted the text from the image. Here's the complete content:
[Display the entire text here]
Incorrect approach:
I found some text in the image. Here's a preview:
"The quick brown fox..." (truncated)
Example 1: URL OCR:
python scripts/ocr_caller.py --file-url "https://example.com/invoice.jpg" --pretty
Example 2: Local File OCR:
python scripts/ocr_caller.py --file-path "./document.pdf" --pretty
Example 3: OCR With Explicit File Type:
python scripts/ocr_caller.py --file-url "https://example.com/input" --file-type 1 --pretty
Example 4: Print JSON Without Saving:
python scripts/ocr_caller.py --file-url "https://example.com/input" --stdout --pretty
The output JSON structure is as follows:
{
"ok": true,
"text": "All recognized text here...",
"result": { ... },
"error": null
}
Key fields:
ok: true for success, false for errortext: Complete recognized textresult: Raw API response (for debugging)error: Error details if ok is falseRaw result location (default): the temp-file path printed by the script on stderr
You can generally assume that the required environment variables have already been configured. Only when an OCR task fails should you analyze the error message to determine whether it is caused by a configuration issue. If it is indeed a configuration problem, you should notify the user to fix it.
When API is not configured:
The error will show:
CONFIG_ERROR: PADDLEOCR_OCR_API_URL not configured. Get your API at: https://paddleocr.com
Configuration workflow:
Show the exact error message to the user (including the URL).
Guide the user to configure securely:
- PADDLEOCR_OCR_API_URL
- PADDLEOCR_ACCESS_TOKEN
- Optional: PADDLEOCR_OCR_TIMEOUT
If the user provides credentials in chat anyway (accept any reasonable format), for example:
PADDLEOCR_OCR_API_URL=https://xxx.paddleocr.com/ocr, PADDLEOCR_ACCESS_TOKEN=abc123...Here's my API: https://xxx and token: abc123Then parse and validate the values:
PADDLEOCR_OCR_API_URL (look for URLs with paddleocr.com or similar)PADDLEOCR_OCR_API_URL is a full endpoint ending with /ocrPADDLEOCR_ACCESS_TOKEN (long alphanumeric string, usually 40+ chars)Ask the user to confirm the environment is configured.
Retry only after confirmation:
Authentication failed:
API_ERROR: Authentication failed (403). Check your token.
Quota exceeded:
API_ERROR: API rate limit exceeded (429)
No text detected:
text field is emptyIf recognition quality is poor, suggest:
For in-depth understanding of the OCR system, refer to:
references/output_schema.md - Output format specificationNote: Model version, capabilities, and supported file formats are determined by your API endpoint (
PADDLEOCR_OCR_API_URL) and its official API documentation.
To verify the skill is working properly:
python scripts/smoke_test.py
This tests configuration and API connectivity.
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Solid pick for teams standardizing on skills: paddleocr-text-recognition is focused, and the summary matches what you get after install.
paddleocr-text-recognition has been reliable in day-to-day use. Documentation quality is above average for community skills.
paddleocr-text-recognition fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
paddleocr-text-recognition reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added paddleocr-text-recognition from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
paddleocr-text-recognition has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: paddleocr-text-recognition is focused, and the summary matches what you get after install.
We added paddleocr-text-recognition from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
paddleocr-text-recognition fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added paddleocr-text-recognition from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 55