skills/business-analyst-toolkit/SKILL.md
Business process analysis, requirements documentation, and workflow optimization for retail, supply chain, and technology organizations
npx skillsauth add ai-mindset-org/pos-sprint business-analyst-toolkitInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill provides structured frameworks and automation tools for business process analysis, requirements documentation, and workflow optimization. It is specifically tailored for retail, supply chain, and technology organizations.
Core Value: 60% faster process documentation, 40% reduction in stakeholder alignment time, 50% less time analyzing processes with automation tools
Target Audience: Business Analysts, Process Improvement Specialists, Product Managers working in retail, supply chain, or technology sectors
Industry Focus: Retail (including e-commerce), Supply Chain, Technology/SaaS
Common Processes to Analyze:
Key Constraints:
Metrics to Track:
Common Processes to Analyze:
Key Constraints:
Metrics to Track:
Common Processes to Analyze:
Key Constraints:
Metrics to Track:
When to Use: Fast-moving environments, iterative delivery, continuous collaboration
Workflow Adaptations:
Key Artifacts:
When to Use: Regulated environments, fixed-scope projects, contractual requirements
Workflow Adaptations:
Key Artifacts:
When to Use: Most real-world projects, balancing flexibility with structure
Workflow Adaptations:
Key Artifacts:
| Challenge | Impact | Mitigation Strategy | |-----------|--------|---------------------| | Ambiguous requirements | Rework, delays | Use structured templates, validate with examples | | Conflicting stakeholder priorities | Scope creep, politics | RACI matrix, executive sponsor alignment | | Limited stakeholder availability | Incomplete analysis | Async documentation, targeted workshops | | Tight project timelines | Quality shortcuts | Prioritize critical requirements, timeboxed analysis | | Changing business priorities | Scope instability | Change control process, impact assessment | | Technical constraints unknown upfront | Late surprises | Early technical feasibility reviews | | Legacy system limitations | Integration complexity | Document constraints, plan workarounds | | Organizational resistance to change | Adoption failures | Stakeholder mapping, change management plan |
business analysis, process mapping, workflow documentation, requirements gathering, process improvement, stakeholder analysis, RACI matrix, process charter, business process modeling, gap analysis, root cause analysis, as-is to-be analysis, process optimization, operational efficiency, change management, business requirements, functional requirements, process documentation, improvement proposals, business case development, retail operations, supply chain, e-commerce, technology, SaaS, omnichannel
For Process Analysis:
# Parse and analyze existing process documentation
python scripts/process_parser.py process-document.md --output analysis.json
# Identify gaps in process documentation
python scripts/gap_analyzer.py --input process.json --format human
# Map stakeholders and generate engagement strategies
python scripts/stakeholder_mapper.py stakeholders.csv --output markdown
For Process Improvement:
# Generate improvement plan from gap analysis
python scripts/improvement_planner.py --gaps gaps.json --timeline 12 --output markdown
# Create process charter with objectives and stakeholders
python scripts/charter_builder.py --process "Customer Onboarding" \
--objectives "Reduce cycle time by 50%" --output markdown
# Calculate KPIs and track metrics
python scripts/kpi_calculator.py executions.csv --baseline baseline.json
For Documentation:
# Generate RACI matrix from process definition
python scripts/raci_generator.py process.json --output markdown
# Create process charter from template
cp assets/process-charter-template.md my-process-charter.md
Understand current-state operations, identify inefficiencies, and document workflows for improvement opportunities.
Steps:
process_parser.pyOutput: Current-state process map with identified improvement areas
Capture business needs, functional requirements, and acceptance criteria for new initiatives or improvements.
Steps:
Output: Comprehensive requirements document with stakeholder alignment
Develop future-state processes with measurable benefits and clear implementation roadmaps.
Steps:
Output: Actionable improvement proposal ready for approval
Map influence networks, assess engagement needs, and create communication strategies for successful change adoption.
Steps:
Output: Stakeholder engagement plan with communication schedule
Assess solution effectiveness against original requirements and capture insights for future improvements.
Steps:
kpi_calculator.py against baselineOutput: Solution evaluation report with benefits realization and lessons learned
Key Questions to Answer:
Parses business process documentation and extracts structured workflow information for analysis and visualization.
Usage:
python scripts/process_parser.py <input-file> [--output json|markdown] [--visualize]
Features:
Use Cases:
Generates comprehensive process improvement charters from objectives, gap analysis, and stakeholder data.
Usage:
python scripts/charter_builder.py --process PROCESS --objectives OBJECTIVES [OPTIONS]
Features:
Use Cases:
Example:
python scripts/charter_builder.py --process "Customer Onboarding" \
--objectives "Reduce cycle time by 50%" \
--gaps gaps.json --stakeholders stakeholders.json \
--output markdown
Maps stakeholders and generates engagement strategies based on influence and interest analysis.
Usage:
python scripts/stakeholder_mapper.py INPUT [--output json|markdown|mermaid]
Features:
Use Cases:
Example:
python scripts/stakeholder_mapper.py stakeholders.csv --output markdown
python scripts/stakeholder_mapper.py stakeholders.json --output mermaid > diagram.mmd
Creates RACI (Responsible, Accountable, Consulted, Informed) matrices from process documentation.
Usage:
python scripts/raci_generator.py INPUT [--output json|csv|markdown|html]
Features:
Use Cases:
Example:
python scripts/raci_generator.py process.json --output markdown
python scripts/raci_generator.py process.csv --template raci-template.csv --validate-only
Identifies gaps and missing elements in process documentation with severity scoring.
Usage:
python scripts/gap_analyzer.py --input INPUT [--format json|human]
Features:
Use Cases:
Example:
python scripts/gap_analyzer.py --input process.json --format human
python scripts/gap_analyzer.py --input process.json --severity-threshold high --output gaps.json
Generates detailed improvement plans from gap analysis with phased implementation roadmaps.
Usage:
python scripts/improvement_planner.py --gaps GAPS [OPTIONS]
Features:
Use Cases:
Example:
python scripts/improvement_planner.py --gaps gaps.json --timeline 12 --output markdown
python scripts/improvement_planner.py --gaps gaps.json --output gantt > timeline.txt
Calculates process KPIs and efficiency metrics from execution data with baseline comparison.
Usage:
python scripts/kpi_calculator.py INPUT [OPTIONS]
Features:
Use Cases:
Example:
python scripts/kpi_calculator.py executions.csv --baseline baseline.json
python scripts/kpi_calculator.py executions.json --period 30 --output markdown --include-charts
[Reference documentation will be added in future iterations. Current focus on templates and automation tools.]
Location: assets/process-charter-template.md
Purpose: Define process scope, objectives, roles, metrics, and implementation plans
Use Cases:
Sections: Executive summary, business context, process details, roles/responsibilities, performance metrics, dependencies, risk assessment, implementation plan, governance
Location: assets/raci-matrix-template.md
Purpose: Clarify roles and responsibilities across activities using Responsible, Accountable, Consulted, Informed framework
Use Cases:
Sections: Role definitions, activity matrix, workload analysis, communication protocols, validation checklist, escalation paths
Location: assets/improvement-proposal-template.md
Purpose: Build comprehensive business case for process improvements with ROI analysis and implementation roadmap
Use Cases:
Sections: Executive summary, current-state analysis, proposed solution, business case (costs/benefits), implementation plan, risk assessment, success metrics, change management
Location: assets/stakeholder-analysis-template.md
Purpose: Map stakeholder landscape, assess influence and interests, and develop targeted engagement strategies
Use Cases:
Sections: Stakeholder inventory, power-interest grid, detailed profiles, influence network map, engagement plan, support tracking, success metrics
Scenario: Customer onboarding takes 15 days with 8% error rate. Goal is to reduce to 7 days with <2% errors.
Workflow:
# Step 1: Analyze current process
python scripts/process_parser.py current-onboarding-process.md --output analysis.json
# Step 2: Create process charter
cp assets/process-charter-template.md onboarding-charter.md
# Edit charter with current metrics and improvement targets
# Step 3: Build improvement proposal
cp assets/improvement-proposal-template.md onboarding-improvement.md
# Complete business case with ROI calculations
# Step 4: Plan stakeholder engagement
cp assets/stakeholder-analysis-template.md onboarding-stakeholders.md
# Map key stakeholders and engagement approach
Expected Outcome: Executive-ready improvement proposal with 50% cycle time reduction, quantified ROI, and stakeholder buy-in strategy.
Time Estimate: 2-3 days for comprehensive analysis and documentation
Scenario: Sales, product, and engineering teams lack clarity on feature request handling. Need to establish clear process with role definitions.
Workflow:
# Step 1: Document current state through interviews
# (Manual step - gather input from all teams)
# Step 2: Create RACI matrix
cp assets/raci-matrix-template.md feature-request-raci.md
# Define who is Responsible, Accountable, Consulted, Informed for each activity
# Step 3: Design new process
cp assets/process-charter-template.md feature-request-process.md
# Document trigger events, steps, inputs/outputs, success criteria
# Step 4: Analyze and validate process structure
python scripts/process_parser.py feature-request-process.md --visualize
# Review workflow for bottlenecks or missing steps
# Step 5: Plan rollout
cp assets/stakeholder-analysis-template.md feature-request-stakeholders.md
# Identify change champions and communication plan
Expected Outcome: Formalized feature request process with clear accountability, reducing confusion and improving response times by 40%.
Time Estimate: 1 week for design, validation, and stakeholder alignment
Agile Product Owner Toolkit: Use RACI matrices and process charters to clarify sprint roles and ceremonies
OKR Strategist: Link process improvement KPIs to organizational OKRs and track progress
UX Research Toolkit: Incorporate user research findings into process improvement proposals
RICE Prioritizer: Score process improvement opportunities using RICE framework for prioritization
Time Savings:
Quality Improvements:
Business Impact:
Getting Started:
process_parser.py to analyze current documentationAdvanced Usage:
Documentation: Full skill guide and workflows available in this file
Support: For issues or questions, refer to parent domain guide at ../CLAUDE.md
Version: 1.1.0 | Last Updated: 2025-11-27 | Status: Production Ready
| Version | Date | Changes | |---------|------|---------| | 1.1.0 | 2025-11-27 | Added retail/supply chain/tech industry focus, methodology variants, common challenges, 5th workflow (Evaluation & Lessons Learned) | | 1.0.0 | 2025-11-21 | Initial release with 4 workflows and Python tools |
testing
# YT Transcribe — YouTube → Whisper → Obsidian Транскрибирует YouTube-видео через mlx-whisper (Apple Silicon, Metal-native) с параллельными чанками. Fallback на openai-whisper если mlx недоступен. ## Какую боль закрывает - **Потерянный контент видео**: Посмотрел лекцию/подкаст — через неделю забыл 90%. Нет текстовой базы для поиска. - **Нет транскриптов для русского**: YouTube auto-captions для русского языка — мусор. Whisper даёт quality транскрипцию. - **Ручная обработка**: Переслушивать 2-
development
Интерактивный процесс написания текстов для вайб-маркетинга на основе Julian Shapiro framework. **Новые возможности (v2.0):** - Research & Gap Analysis (Perplexity → WebSearch fallback) - Scoring 0-5 вместо binary (Novelty + Resonance + Hook + Clarity) - AI-Slop Detection на всех этапах (10 типов patterns) - 3 варианта intro с self-scoring - Markdown export всех промежуточных результатов **Русские triggers:** "напиши пост по шапиро", "написать статью по фреймворку шапиро", "создай текст в стиле julian shapiro", "помоги написать контент по методу shapiro", "контент по julian shapiro фреймворку", "пост по julian shapiro", "напиши в стиле шапиро" **English triggers:** "write content using julian shapiro framework", "create post with shapiro method", "write article shapiro style", "help with julian shapiro writing" **Generic triggers:** "напиши статью", "помоги написать контент", "создай текст", "начать писать", "хочу написать пост", "нужна помощь с текстом", "write content", "write article", "создай контент", "придумай идею для статьи", or requests help with content creation process.
tools
# /tg-saved v2 — Telegram Saved Messages → Deep Analysis → Obsidian ## Назначение Скилл извлекает сообщения из Telegram "Избранное" (Saved Messages) за последние N дней, автоматически парсит контент всех ссылок в сообщениях (requests + BeautifulSoup, до 5000 символов на URL), затем для каждого сообщения запускает глубокий анализ через Claude CLI subprocess (модель Sonnet). Результат — подробная структурированная заметка в Obsidian `00-inbox/` с YAML frontmatter, секциями анализа, ссылками и ор
documentation
Делает LLM-выжимку из комментариев менеджеров об одном или нескольких подрядчиках. Используй этот скилл когда нужно понять что говорят менеджеры о конкретном подрядчике, или получить JSON с выжимкой для дальнейшей обработки.