---
title: "Skills Bridge Analyzer: Domain Skill Signal Extraction"
slug: "skills-bridge-analyzer"
date: "2026-03-20"
category: "analysis"
tags: ["codex-skill", "analysis", "content", "bridge"]
---

## What this skill does

This skill executes `skills_bridge.py` to generate skill analyses from domain surfaces and produce structured reports for GEO/content operations.

## Why it is useful

It creates reusable candidate blocks and scoring paths from domain content so you can convert crawlable surface signals into publishable skill intelligence.

## Core command

```bash
cd "<domain-management-root>"
python3 skills_bridge.py \
  --registry domains/registry.json \
  --reports reports/skills \
  --gate --min-score 0.65
```

## Inputs and outputs

- Inputs:
  - `domains/registry.json`
  - optional URL overrides (`--url`)
- Outputs:
  - `reports/skills/seo-geo/<domain>/GEO-ANALYSIS.md`
  - `reports/skills/seo-content/<domain>/CONTENT-ANALYSIS.md`

## Compatibility

- Surface: `codex-cli`
- Requires network: yes
- Requires escalated permissions: no
- Required tools: `python3`

## Safety notes

- Read + analysis workflow; does not deploy.
- Gate mode supports controlled quality thresholds before downstream use.

## Sources

- [Python argparse](https://docs.python.org/3/library/argparse.html)
- [HTTP semantics reference](https://httpwg.org/specs/rfc9110.html)
