-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
33 lines (33 loc) · 957 Bytes
/
Copy pathplugin.json
File metadata and controls
33 lines (33 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "migrapi",
"version": "1.0.0",
"description": "Claude Agent Skill for automated API migration in Python and JavaScript codebases",
"author": "Davide Ferigato",
"license": "MIT",
"repository": "https://github.com/davideFerigato/MigraAPI",
"tags": ["api-migration", "claude-skills", "subagents", "anthropic"],
"skills": [
{
"path": ".claude/skills/api-migration",
"name": "api-migration",
"description": "Migrates deprecated API calls to a new API version"
}
],
"agents": [
{
"path": ".claude/agents/scanner.md",
"name": "scanner",
"description": "Analyzes file for deprecated API calls"
},
{
"path": ".claude/agents/rewriter.md",
"name": "rewriter",
"description": "Applies migration changes to a file"
},
{
"path": ".claude/agents/validator.md",
"name": "validator",
"description": "Validates migrated file syntax"
}
]
}