ms-customer-stories

Microsoft Customer Stories

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ms-customer-stories" with this command: npx skills add hihigash/ms-customer-stories-skill/hihigash-ms-customer-stories-skill-ms-customer-stories

Microsoft Customer Stories

Overview

Search and retrieve customer stories from Microsoft's official Customer Stories site via its internal API.

Workflow

  • Analyze the user's request to determine appropriate filters

  • Run scripts/search_stories.py with selected filters to find matching stories

  • Review results and optionally run scripts/fetch_story.py on specific stories for full details

  • Summarize findings for the user

Prerequisites

Install requests in the Python environment: pip install requests

Step 1: Map User Request to Filters

Translate the user's natural language request into API filter parameters. Consult references/filters.md for the complete list of available filter values.

Mapping guidelines:

User mentions Filter to use

Country/region names (Japan, US, etc.) --region (e.g., asia/japan )

Product names (Azure, Teams, etc.) --products (e.g., azure/azure-openai )

Industry terms (healthcare, finance, etc.) --industry (e.g., healthcare )

Business concepts (AI, automation, etc.) --business-need (e.g., artificial-intelligence )

Company size (SMB, enterprise, etc.) --org-size (e.g., 50-999-employees )

Specific technology terms (RAG, etc.) --query (free text search)

Common mappings:

  • "中小企業" / "SMB" → --org-size 50-999-employees or --org-size 1-49-employees

  • "大企業" / "Enterprise" → --org-size 10000-employees

  • "RAG" / "検索拡張生成" → --query RAG

  • --products azure/azure-openai
  • "日本" → --region asia/japan

Step 2: Search Stories

Run the search script:

python scripts/search_stories.py --products azure/azure-openai --region asia/japan --query "RAG" --top 10

Arguments:

  • --query / -q : Free text search

  • --products / -p : Product filter (e.g., azure/azure-openai , azure/azure-ai-search )

  • --region / -r : Region filter (e.g., asia/japan , europe/germany )

  • --industry / -i : Industry filter (e.g., healthcare , manufacturing )

  • --business-need / -b : Business need (e.g., artificial-intelligence )

  • --org-size / -o : Organization size (e.g., 50-999-employees )

  • --service / -s : Service filter (e.g., fasttrack )

  • --includes : Stories that include (e.g., videos,partners )

  • --top / -t : Number of results (default: 12)

  • --skip : Pagination offset

Output is JSON with totalCount , hasMorePages , and stories array.

Step 3: Fetch Story Details

For interesting stories, fetch the full content:

python scripts/fetch_story.py 25666-softbank-corp-azure-ai-foundry

Accepts a story slug or full URL. Returns JSON with title , description , content .

Output Format

Always respond in the same language the user used. If the user asks in Japanese, reply in Japanese. If in English, reply in English.

Present results to the user in this format:

Search Results: {totalCount} stories

1. {title}

  • Industry: {industry}
  • URL: {url}
  • Summary: {summary from content}

2. {title}

...

When the user asks for details on a specific story, provide a more detailed summary of the story content including key challenges, solutions, and outcomes.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

ll-feishu-audio

飞书语音交互技能。支持语音消息自动识别、AI 处理、语音回复全流程。需要配置 FEISHU_APP_ID 和 FEISHU_APP_SECRET 环境变量。使用 faster-whisper 进行语音识别,Edge TTS 进行语音合成,自动转换 OPUS 格式并通过飞书发送。适用于飞书平台的语音对话场景。

Archived SourceRecently Updated
General

test_skill

import json import tkinter as tk from tkinter import messagebox, simpledialog

Archived SourceRecently Updated
General

51mee-resume-profile

简历画像。触发场景:用户要求生成候选人画像;用户想了解候选人的多维度标签和能力评估。

Archived SourceRecently Updated
General

51mee-resume-parse

简历解析。触发场景:用户上传简历文件要求解析、提取结构化信息。

Archived SourceRecently Updated