Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/data/plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"commands": 1,
"repo": "https://github.com/agent-sh/drift-detect",
"install": "agentsys install drift-detect",
"dependencies": ["repo-map"]
"dependencies": ["repo-intel"]
},
{
"name": "audit-project",
Expand All @@ -88,14 +88,14 @@
"dependencies": []
},
{
"name": "repo-map",
"description": "AST symbol and import mapping. Cached file-to-symbols map via ast-grep used by drift-detect and planners.",
"name": "repo-intel",
"description": "Unified static analysis via agent-analyzer. Git history, AST symbols, project metadata, and doc-code sync in one cached artifact.",
"category": "infrastructure",
"agents": 1,
"skills": 1,
"commands": 1,
"repo": "https://github.com/agent-sh/repo-map",
"install": "agentsys install repo-map",
"repo": "https://github.com/agent-sh/repo-intel",
"install": "agentsys install repo-intel",
Comment on lines +91 to +98
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The new description for repo-intel mentions 'doc-code sync'. This seems to create a functional overlap with the sync-docs plugin. To clarify the architecture and ensure correct dependency tracking, could you elaborate on the relationship? If repo-intel provides data for sync-docs, it might be beneficial for sync-docs to list repo-intel as a dependency.

"dependencies": []
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/data/skills.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{ "name": "perf-analyzer", "plugin": "perf", "description": "Deep performance analysis combining all profiling data", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "deslop", "plugin": "deslop", "description": "Detect and clean AI-generated slop patterns in code", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "drift-analysis", "plugin": "drift-detect", "description": "Compare documented plans against actual implementation", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "repo-mapping", "plugin": "repo-map", "description": "Build AST-based symbol and import map of codebase", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "repo-intel", "plugin": "repo-intel", "description": "Unified static analysis - git history, AST symbols, project metadata", "platforms": ["Claude Code", "OpenCode", "Codex"] },
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The description for the repo-intel skill doesn't mention 'doc-code sync', which is part of the repo-intel plugin's description. For consistency and clarity, I suggest aligning the skill's description with the plugin's full capabilities.

Suggested change
{ "name": "repo-intel", "plugin": "repo-intel", "description": "Unified static analysis - git history, AST symbols, project metadata", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "repo-intel", "plugin": "repo-intel", "description": "Unified static analysis - git history, AST symbols, project metadata, and doc-code sync", "platforms": ["Claude Code", "OpenCode", "Codex"] },

{ "name": "sync-docs", "plugin": "sync-docs", "description": "Find and fix documentation drift from source code", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "learn-topic", "plugin": "learn", "description": "Research topics online and create structured learning guides", "platforms": ["Claude Code", "OpenCode", "Codex"] },
{ "name": "agnix-lint", "plugin": "agnix", "description": "Validate agent configs with 230 rules across AI tools", "platforms": ["Claude Code", "OpenCode", "Codex", "Cursor"] },
Expand Down
Loading