by bitsky-tech
Bridgic is the next-generation agent development framework for building intelligent systems.
# Add to your Claude Code skills
git clone https://github.com/bitsky-tech/bridgicBridgic is the next-generation agent development framework for building intelligent systems.
By redefining the boundary between workflows and agents, Bridgic introduces a unified orchestration and runtime model which enables developers to seamlessly transition between predictable workflows and autonomous, creative agents within one system.
<div align="center">✨ The name "Bridgic" embodies our core philosophy — "Bridging Logic and Magic", where:
- Logic represents deterministic and predictable execution flows, forming the foundation of reliable systems.
- Magic refers to the autonomous parts that can make dynamic decisions and solve problems creatively.
graph
subgraph " "
A["Deterministic Workflows<br/>(Logic)"]
B["Autonomous Agents<br/>(Magic)"]
end
A ---> B
B ---> A
style A fill:#f9f9f9,stroke:#333,stroke-width:2px
style B fill:#f9f9f9,stroke:#333,stroke-width:2px
</div>
Bridgic requires Python 3.9 or newer.
pip install bridgic
python -c "from bridgic.core import __version__; print(f'Bridgic version: {__version__}')"
uv add bridgic
uv run python -c "from bridgic.core import __version__; print(f'Bridgic version: {__version__}')"
ferry_to() API.