Agent skill

azure-wiki-generator

Generate and manage Azure DevOps Wiki pages with markdown content. Use when creating project documentation or wiki pages.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/azure-wiki-generator

SKILL.md

Azure Wiki Generator Skill

Azure DevOps Wikiページを生成するスキルです。

主な機能

  • Wikiページ作成: Markdown形式
  • 目次生成: 階層構造
  • ドキュメントテンプレート: プロジェクトドキュメント
  • 図表埋め込み: Mermaid、画像

Wikiページ作成

ホームページ

markdown
# プロジェクトWiki

## 概要

このWikiにはプロジェクトのドキュメントが含まれています。

## 目次

- [アーキテクチャ](Architecture)
- [開発ガイド](Development-Guide)
- [デプロイメント](Deployment)
- [API仕様](API-Reference)

## クイックスタート

1. [環境セットアップ](Setup)
2. [ローカル開発](Local-Development)
3. [テスト実行](Testing)

アーキテクチャページ

markdown
# システムアーキテクチャ

## 概要図

```mermaid
graph TB
    Client[クライアント] --> LB[ロードバランサー]
    LB --> Web1[Webサーバー1]
    LB --> Web2[Webサーバー2]
    Web1 --> DB[(データベース)]
    Web2 --> DB
    Web1 --> Cache[Redis]
    Web2 --> Cache

コンポーネント

フロントエンド

  • React 18
  • TypeScript
  • Tailwind CSS

バックエンド

  • Node.js + Express
  • PostgreSQL
  • Redis

インフラ

  • Azure App Service
  • Azure Database for PostgreSQL
  • Azure Cache for Redis

## Git操作でWiki更新

```bash
# Wikiリポジトリのクローン
git clone https://dev.azure.com/myorg/MyProject/_git/MyProject.wiki

cd MyProject.wiki

# 新ページ作成
cat > API-Reference.md << 'WIKI'
# API リファレンス

## エンドポイント

### GET /api/users
ユーザー一覧を取得

**レスポンス:**
```json
{
  "users": [
    {
      "id": 1,
      "name": "John Doe"
    }
  ]
}

WIKI

コミット&プッシュ

git add . git commit -m "Add API Reference page" git push


## ページテンプレート

### 機能仕様

```markdown
# [機能名]

## 概要
[機能の簡単な説明]

## 要件
- 要件1
- 要件2

## ユースケース
1. ユーザーが...
2. システムは...

## UI/UX
[スクリーンショットまたはモックアップ]

## 技術仕様
### データモデル
### API
### セキュリティ

## テスト計画
- [ ] ユニットテスト
- [ ] 統合テスト
- [ ] E2Eテスト

バージョン情報

  • Version: 1.0.0

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results