Unless otherwise stated by the user or existing template
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionspreadsheet-processorExecute the skills CLI command in your project's root directory to begin installation:
Fetches spreadsheet-processor from qodex-ai/ai-agent-skills 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 spreadsheet-processor. Access via /spreadsheet-processor 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
5
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
5
stars
Unless otherwise stated by the user or existing template
A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.
LibreOffice Required for Formula Recalculation: You can assume LibreOffice is installed for recalculating formula values using the recalc.py script. The script automatically configures LibreOffice on first run
For data analysis, visualization, and basic operations, use pandas which provides powerful data manipulation capabilities:
import pandas as pd
# Read Excel
df = pd.read_excel('file.xlsx') # Default: first sheet
all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict
# Analyze
df.head() # Preview data
df.info() # Column info
df.describe() # Statistics
# Write Excel
df.to_excel('output.xlsx', index=False)
Always use Excel formulas instead of calculating values in Python and hardcoding them. This ensures the spreadsheet remains dynamic and updateable.
# Bad: Calculating in Python and hardcoding result
total = df['Sales'].sum()
sheet['B10'] = total # Hardcodes 5000
# Bad: Computing growth rate in Python
growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']
sheet['C5'] = growth # Hardcodes 0.15
# Bad: Python calculation for average
avg = sum(values) / len(values)
sheet['D20'] = avg # Hardcodes 42.5
# Good: Let Excel calculate the sum
sheet['B10'] = '=SUM(B2:B9)'
# Good: Growth rate as Excel formula
sheet['C5'] = '=(C4-C2)/C2'
# Good: Average using Excel function
sheet['D20'] = '=AVERAGE(D2:D19)'
This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.
python recalc.py output.xlsx
status is errors_found, check error_summary for specific error types and locations#REF!: Invalid cell references#DIV/0!: Division by zero#VALUE!: Wrong data type in formula#NAME?: Unrecognized formula name# Using openpyxl for formulas and formatting
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment
wb = Workbook()
sheet = wb.active
# Add data
sheet['A1'] = 'Hello'
sheet['B1'] = 'World'
sheet.append(['Row', 'of', 'data'])
# Add formula
sheet['B2'] = '=SUM(A1:A10)'
# Formatting
sheet['A1'].font = Font(bold=True, color='FF0000')
sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')
sheet['A1'].alignment = Alignment(horizontal='center')
# Column width
sheet.column_dimensions['A'].width = 20
wb.save('output.xlsx')
# Using openpyxl to preserve formulas and formatting
from openpyxl import load_workbook
# Load existing file
wb = load_workbook('existing.xlsx')
sheet = wb.active # or wb['SheetName'] for specific sheet
# Working with multiple sheets
for sheet_name in wb.sheetnames:
sheet = wb[sheet_name]
print(f"Sheet: {sheet_name}")
# Modify cells
sheet['A1'] = 'New Value'
sheet.insert_rows(2) # Insert row at position 2
sheet.delete_cols(3) # Delete column 3
# Add new sheet
new_sheet = wb.create_sheet('NewSheet')
new_sheet['A1'] = 'Data'
wb.save('modified.xlsx')
Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided recalc.py script to recalculate formulas:
python recalc.py <excel_file> [timeout_seconds]
Example:
python recalc.py output.xlsx 30
The script:
Quick checks to ensure formulas work correctly:
pd.notna()/ in formulas (#DIV/0!)The script returns JSON with error details:
{
"status": "success", // or "errors_found"
"total_errors": 0, // Total error count
βMake data-driven prioritization decisions faster
Stakeholder Communication
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
Implementation Guide
Prerequisites
- βΊClaude Desktop or compatible AI client
- βΊAccess to product documentation and roadmap tools (Jira, Notion, etc.)
- βΊUnderstanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- βΊStakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Steps
- 1Install product management skill
- 2Start with user story generation for known feature
- 3Progress to competitive analysis: research 2-3 competitors
- 4Use for roadmap prioritization: apply RICE/ICE scoring
- 5Draft stakeholder communications and refine based on feedback
- 6Build template library for recurring PM tasks
- 7Share effective prompts with product team
Common Pitfalls
- β Not validating competitive researchβverify facts before sharing
- β Accepting user stories without involving engineering team
- β Over-relying on frameworks without qualitative judgment
- β Not customizing outputs to company culture and communication style
- β Skipping stakeholder validation of generated requirements
Best Practices
β Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
β Don't
- βDon't publish competitive analysis without fact-checking
- βDon't finalize user stories without engineering review
- βDon't make prioritization decisions solely on AI scoring
- βDon't skip customer validation of generated requirements
- βDon't ignore company-specific context and culture
π‘ Pro Tips
- β
Provide context: company goals, constraints, customer feedback
- β
Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- β
Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- β
Use skill for 70% generation + 30% customization to company needs
When to Use This
β 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.
Learning Path
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Related Skills
grill-me
525mattpocock/skills
Productivitysame categorypremortem
209parcadei/continuous-claude-v3
Productivitysame categorydeslop
140cursor/plugins
Productivitysame categorytravel-planner
118ailabs-393/ai-labs-claude-skills
Productivitysame categoryframer-motion
115pproenca/dot-skills
Productivitysame categorywordpress-elementor
107jezweb/claude-skills
Productivitysame categoryReviews
4.5β
β
β
β
β
66 reviews- SShikha Mishraβ
β
β
β
β
Dec 24, 2024
Keeps context tight: spreadsheet-processor is the kind of skill you can hand to a new teammate without a long onboarding doc.
- DDiya Rahmanβ
β
β
β
β
Dec 24, 2024
spreadsheet-processor is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- FFatima Haddadβ
β
β
β
β
Dec 20, 2024
spreadsheet-processor reduced setup friction for our internal harness; good balance of opinion and flexibility.
- VValentina Martinβ
β
β
β
β
Dec 16, 2024
Useful defaults in spreadsheet-processor β fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- YYuki Lopezβ
β
β
β
β
Dec 16, 2024
Registry listing for spreadsheet-processor matched our evaluation β installs cleanly and behaves as described in the markdown.
- IIra Khannaβ
β
β
β
β
Dec 12, 2024
Solid pick for teams standardizing on skills: spreadsheet-processor is focused, and the summary matches what you get after install.
- FFatima Reddyβ
β
β
β
β
Dec 8, 2024
Keeps context tight: spreadsheet-processor is the kind of skill you can hand to a new teammate without a long onboarding doc.
- GGanesh Mohaneβ
β
β
β
β
Dec 4, 2024
Useful defaults in spreadsheet-processor β fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- YYuki Gonzalezβ
β
β
β
β
Dec 4, 2024
I recommend spreadsheet-processor for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- VValentina Yangβ
β
β
β
β
Nov 27, 2024
Registry listing for spreadsheet-processor matched our evaluation β installs cleanly and behaves as described in the markdown.
showing 1-10 of 66
1 / 7Discussion
Comments β not star reviews- No comments yet β start the thread.