Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Arete-Consortium/ai-skills --skill specコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Intelligent CI failure diagnosis and guided remediation for GitHub Actions, GitLab CI, and local builds
Pre-execution mapping of codebases, document collections, or problem spaces. Runs BEFORE any Gorgon workflow to give all agents shared situational awareness
Investigative methodology for analyzing document collections — provenance analysis, anomaly detection, redaction detection, and cross-document validation
SKILL.md を表示中
| name | spec |
| description | Technical Specification Writer |
| lifecycle | experimental |
Write technical specifications from requirements.
/spec <feature description>
/spec --template api # Use API spec template
/spec --template feature # Use feature spec template
# Technical Specification: [Feature Name]
## Status
- **Author**: [name]
- **Status**: Draft | Review | Approved
- **Last Updated**: [date]
## Summary
One paragraph describing what this feature does and why.
## Goals
- Goal 1
- Goal 2
## Non-Goals
- Explicitly out of scope item
## Background
Context needed to understand this feature.
## Design
### Architecture
How this fits into the existing system.
### Data Model
```python
@dataclass
class NewEntity:
id: str
name: str
created_at: datetime
def new_function(param: str) -> Result:
"""
Args:
param: Description
Returns:
Result object
Raises:
ValueError: When param is invalid
"""
| Error | Cause | Response |
|---|---|---|
| ValidationError | Invalid input | 400 + message |
## Instructions for Claude
When /spec is invoked:
1. **Clarify requirements** - Ask questions before writing
2. **Research existing code** - Understand patterns and conventions
3. **Be specific** - Include actual function signatures, data structures
4. **Consider edge cases** - Error handling, validation, limits
5. **Security first** - Always include security considerations
6. **Keep actionable** - Spec should be directly implementable