スキル一覧に戻る
rcmiller01

architecture-review

by rcmiller01

0🍴 0📅 2026年1月15日
GitHubで見るManusで実行

SKILL.md


name: architecture-review description: Run an iterative architecture review loop with critique and revision

Architecture Review Skill

Iteratively critiques and improves an architecture document through multiple rounds of review.

When to Use

Use this skill when you want to:

  • Review and improve an architecture document
  • Get structured critique of a design
  • Iteratively refine a proposal
  • Catch issues before implementation

Input Format

Document: [Your architecture document or design]
Max Iterations: [Optional - max review rounds, default 3]

Example

Document:
# User Authentication Service

## Overview
JWT-based auth with refresh tokens...

## Components
- Auth API (Express.js)
- Redis for session cache
- PostgreSQL for user data

## Flows
1. Login: email/password → validate → issue JWT
2. Refresh: refresh_token → validate → new JWT
...

Max Iterations: 3

What Happens

  1. Document is sent to the LangGraph design-review endpoint
  2. AI generates critique identifying issues and suggestions
  3. If issues found, document is revised
  4. Critique runs again on revised version
  5. Loop continues until approved or max iterations reached

Response Format

## Final Document
[The improved document after all revisions]

## Review Summary
- Iterations: 3
- Final Status: Approved

## Critique History
### Iteration 1
- Issues: Missing rate limiting, no token revocation
- Suggestions: Add rate limit per IP, implement token blacklist

### Iteration 2
- Issues: Blacklist approach won't scale
- Suggestions: Use short-lived tokens + sliding refresh

### Iteration 3
- Status: Approved
- Minor suggestions: Consider adding...

Implementation

Call the LangGraph API at: http://localhost:8100/graphs/design-review

curl -X POST http://localhost:8100/graphs/design-review \
  -H "Content-Type: application/json" \
  -d '{
    "document": "# User Authentication Service\n\n...",
    "max_iterations": 3
  }'

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です