一键导入
build
Build and install the project in development mode. Handles venv creation and editable installs. Invoke with /build.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build and install the project in development mode. Handles venv creation and editable installs. Invoke with /build.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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
Resolves entity ambiguity across document corpora — fuzzy name matching, alias detection, identity consolidation, and confidence-scored entity merging
Packages project state into structured context documents for agent sessions, human pickup, or Quorum IntentNodes
Teaches agents how to publish well-structured intents for Convergent's intent graph — schema, quality criteria, and authoring patterns
| name | build |
| description | Build and install the project in development mode. Handles venv creation and editable installs. Invoke with /build. |
| lifecycle | experimental |
Build and install the project for development.
/build # Install in dev mode
/build --clean # Clean and reinstall
/build --prod # Build distribution
Setup virtual environment
# Create venv if not exists
[ -d .venv ] || python3 -m venv .venv
# Activate
source .venv/bin/activate
Install dependencies
# Upgrade pip
pip install --upgrade pip
# Install in editable mode with dev deps
pip install -e ".[dev]"
# Or without dev deps
pip install -e .
Verify installation
# Check package is installed
pip show <package-name>
# Run quick test
python -c "import <package>; print(<package>.__version__)"
# Full setup from scratch
python3 -m venv .venv && source .venv/bin/activate && pip install -e ".[dev]"
# Just reinstall
pip install -e . --force-reinstall
# Build distribution
pip install build && python -m build
# Check what would be installed
pip install -e . --dry-run
# Build wheel and sdist
pip install build
python -m build
# Output in dist/
ls dist/
# package-1.0.0-py3-none-any.whl
# package-1.0.0.tar.gz
# Test install from wheel
pip install dist/*.whl
pip install -e . --force-reinstallpip install --upgrade-strategy eager -e .Installing: my-package (editable)
Successfully installed my-package-1.0.0 dep1-2.0 dep2-3.0
Installed entry points:
my-cli = my_package.cli:main
Ready for development!