skills/43-wentorai-research-plugins/skills/domains/business/strategic-management-guide/SKILL.md
Frameworks for strategic planning, resource allocation, and organizational an...
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research strategic-management-guideInstall 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.
A research-oriented skill for applying strategic management theories and frameworks to academic case studies, organizational analysis, and business research. Covers classical and contemporary strategy frameworks with rigorous analytical methods.
The RBV framework (Barney, 1991) evaluates competitive advantage through internal resources and capabilities. Apply the VRIO test:
| Criterion | Question | If "No" | |-----------|----------|---------| | Valuable | Does it exploit opportunity or neutralize threat? | Competitive disadvantage | | Rare | Is it controlled by few firms? | Competitive parity | | Inimitable | Is it costly to imitate? | Temporary advantage | | Organized | Is the firm organized to capture value? | Unrealized advantage |
All four "Yes" answers indicate a sustained competitive advantage.
# VRIO analysis scoring framework
def vrio_analysis(resources: list[dict]) -> dict:
results = {}
for r in resources:
name = r['name']
v, r_score, i, o = r['valuable'], r['rare'], r['inimitable'], r['organized']
if not v:
results[name] = 'competitive_disadvantage'
elif not r_score:
results[name] = 'competitive_parity'
elif not i:
results[name] = 'temporary_advantage'
elif not o:
results[name] = 'unrealized_advantage'
else:
results[name] = 'sustained_advantage'
return results
# Example usage
resources = [
{'name': 'proprietary_algorithm', 'valuable': True, 'rare': True, 'inimitable': True, 'organized': True},
{'name': 'office_space', 'valuable': True, 'rare': False, 'inimitable': False, 'organized': True},
]
print(vrio_analysis(resources))
# {'proprietary_algorithm': 'sustained_advantage', 'office_space': 'competitive_parity'}
A structured approach to strategy formulation for research purposes:
Apply Ansoff's Growth Matrix to map strategic options:
Existing Products New Products
Existing Markets Market Penetration Product Development
New Markets Market Development Diversification
For academic research, operationalize each quadrant with measurable indicators: market share growth rate, R&D investment ratio, geographic expansion metrics, and portfolio diversification index.
Use the SAFe criteria (Johnson, Whittington & Scholes):
Translate strategy into measurable objectives across four perspectives:
financial:
objectives:
- "Increase revenue by 15% YoY"
- "Reduce cost-to-serve by 10%"
kpis: ["revenue_growth_rate", "operating_margin"]
customer:
objectives:
- "Achieve NPS > 50"
- "Reduce churn below 5%"
kpis: ["net_promoter_score", "monthly_churn_rate"]
internal_process:
objectives:
- "Reduce cycle time by 20%"
- "Achieve 99.9% uptime"
kpis: ["avg_cycle_time_days", "system_uptime_pct"]
learning_growth:
objectives:
- "Increase training hours per employee"
- "Launch 3 new capabilities per quarter"
kpis: ["training_hours_per_fte", "new_capabilities_shipped"]
Model competitive interactions using payoff matrices:
import numpy as np
# Prisoner's Dilemma payoff matrix
# (Row player payoff, Column player payoff)
# Strategies: Cooperate (0), Defect (1)
payoffs_row = np.array([[3, 0],
[5, 1]])
payoffs_col = np.array([[3, 5],
[0, 1]])
# Find Nash equilibria
for i in range(2):
for j in range(2):
row_best = payoffs_row[i, j] >= max(payoffs_row[:, j])
col_best = payoffs_col[i, j] >= max(payoffs_col[i, :])
if row_best and col_best:
print(f"Nash Equilibrium at ({i}, {j})")
Structure scenario analysis with two critical uncertainties on perpendicular axes. Develop four internally consistent narratives, assign probability weights, and compute expected values for key decision variables. This approach enables robust strategy under deep uncertainty.
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.