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
25 changes: 19 additions & 6 deletions .github/workflows/docs_patch_pages.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# Docs Patch Pages Workflow
# This workflow patches existing documentation versions by deleting and rebuilding them with mike
# It is triggered when pushing tags matching the pattern v[0-9]*.[0-9]*.[0-9]*.post[0-9]+
# The workflow extracts the base version (e.g., v1.0.0 from v1.0.0.post1) and rebuilds that documentation version
# This workflow patches existing documentation versions by deleting and rebuilding them with mike.
# It is triggered when pushing tags matching post-release patterns (*.postN), including:
# - Normal post-release: v1.2.3.post1
# - Alpha pre-release post-release: v1.2.3a1.post1
# - Beta pre-release post-release: v1.2.3b1.post1
# - Release candidate post-release: v1.2.3rc1.post1
#
# The workflow strips the .postN suffix to extract the base version (e.g., v1.2.3 from v1.2.3.post1,
# or v1.2.3b1 from v1.2.3b1.post1), then deletes and rebuilds that documentation version.
# Finally, it ensures the CNAME file exists on the gh-pages branch for custom domain support.
#
# Reference documentation:
# - GitHub Actions: https://docs.github.com/en/actions
# - uv package manager: https://docs.astral.sh/uv/
Expand All @@ -15,9 +23,14 @@ name: Docs Patch Pages
on:
push:
tags:
# This pattern matches post-release version tags (e.g., v1.2.3.post1, v2.0.0.post2)
# These tags are used for patching existing documentation versions
- 'v[0-9]*.[0-9]*.[0-9]*.post[0-9]+'
# Normal post-release
- 'v[0-9]+.[0-9]+.[0-9]+.post[0-9]+'
# Alpha pre-release post-release
- 'v[0-9]+.[0-9]+.[0-9]+a[0-9]+.post[0-9]+'
# Beta pre-release post-release
- 'v[0-9]+.[0-9]+.[0-9]+b[0-9]+.post[0-9]+'
# Release candidate post-release
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+.post[0-9]+'

jobs:
deploy:
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Bridgic
<p align="center">
<picture>
<img src="https://raw.githubusercontent.com/bitsky-tech/bridgic/refs/heads/main/docs/docs/assets/logo_white_bg.svg" alt="Bridgic" width="500">
</picture>
</p>

---

[![License MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![Python Version](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://www.python.org/)
[![PyPI Version](https://img.shields.io/pypi/v/bridgic.svg)](https://pypi.org/search/?q=bridgic)
[![PyPI Downloads](https://img.shields.io/pypi/dm/bridgic.svg)](https://pypi.org/search/?q=bridgic)


**Bridgic** 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.
Expand Down
Binary file modified docs/docs/assets/favicon.ico
Binary file not shown.
Binary file added docs/docs/assets/favicon_dark.ico
Binary file not shown.
Binary file removed docs/docs/assets/logo.png
Binary file not shown.
24 changes: 24 additions & 0 deletions docs/docs/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions docs/docs/assets/logo_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading