Rosentic
v1.0.0• Rosentic
Cross-branch semantic conflict detection engine. Checks whether active git branches are compatible before merge. Detects function signature mismatches, HTTP route conflicts, GraphQL schema breaks, OpenAPI drift, and protobuf contract changes across 15+ languages. Deterministic AST analysis, not AI review. Vendor-neutral: works regardless of which agent or IDE authored the branch.
Skills
-
Assess Integration Posture
Evaluate a repository's cross-branch verification coverage. Reports active branches, unverified branch pairs, agent attribution, estimated conflict surface area, and whether cross-branch checking exists in CI.
gitci-cdmerge-safetyagent-verification -
Check Cross-Branch Conflicts
Scan a git repository for semantic conflicts between active branches. Returns UNSAFE and WARNING findings using deterministic AST analysis.
static-analysiscross-branchconflict-detectionpull-request -
Explain Conflict
Detailed breakdown of a specific finding including producer/consumer evidence, affected files, line numbers, and resolution guidance.
code-reviewconflict-detectionpull-request -
List Branches
Active branches with agent attribution, divergence from base, and commit metadata.
gitbranch-compatibilityagent-verification -
Merge Index
Composite integration health score for a repo or org. Historical trends, agent overlap data, finding lifecycle, hotspot repos. Requires API key.
code-qualityci-cdmerge-verification
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("4ba2cb25-65fc-4cf4-ad10-025f80818822")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())