Skip to content

Commit f6a77bd

Browse files
Merge pull request #40 from forecast-bio/release/v0.1.1a1
release: v0.1.1-alpha.1
2 parents bcd5edf + 06585aa commit f6a77bd

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ crosslink/mutants.out/
2323
crosslink/.crosslink/.cache/last-edit-time
2424
.crosslink/.cache/guard-full-sent
2525
OPUS_4_6_SUGGESTIONS.md
26-
crosslink-enterprise/
26+
crosslink-enterprise/
27+
.worktrees/

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [0.1.1-alpha.1] - 2026-02-26
10+
911
### Multi-Agent Collaboration
1012

1113
Distributed issue locking and agent coordination, ported from crosslink-enterprise.
@@ -67,6 +69,19 @@ context-compression resilience.
6769
- Database schema v7→v8 migration (adds `last_action` column to sessions, auto-applied on first use)
6870

6971
### Added
72+
- Add `crosslink integrity` subcommand with `--check` and `--repair` modes (#31)
73+
- Add `--check` flag to `review diff` for CI policy drift detection (#28)
74+
- Add kickoff workflow skills (`/feature`, `/featree`, `/kickoff`, `/check`) to `crosslink init` (#26)
75+
- Add `+key` array-extend semantics in `hook-config.local.json` (#25)
76+
- Add offline issue ID promotion flow with `crosslink promote` (#24)
77+
- Add promotion notifications with reference tracking (#27)
78+
- Add auto-detection of Python toolchain in `crosslink init` and template hook commands (#36)
79+
- Update `crosslink export` to emit per-issue `IssueFile` JSON format (#32)
80+
- Redesign milestones to per-file storage for conflict-free multi-agent writes (#35)
81+
- Deduplicate config-loading logic into shared `crosslink_config.py` module (#29)
82+
- Add `crosslink review diff` slash command for guided policy review (#7)
83+
- Add `hook-config.local.json` support for machine-local overrides (#5)
84+
- Add multi-agent shared issue coordination via `crosslink/hub` branch (#6)
7085
- Add auto-detection of Python toolchain in crosslink init (#21)
7186
- Update READMEs with hook configuration documentation (#119)
7287
- Split tracking instructions into per-mode markdown files (#118)
@@ -94,6 +109,10 @@ context-compression resilience.
94109
- Fix daemon log file corruption from duplicate file handles (#97)
95110

96111
### Changed
112+
- Rename coordination branch from `crosslink/locks` to `crosslink/hub` (#37)
113+
- Optimize CI with tiered job dependencies to save minutes on early failures (#33)
114+
- Rebrand chainlink to crosslink (#4)
115+
- Fix display ID collision in rebase-retry logic (#21)
97116
- Block git mutation commands via hook (#113)
98117
- Fix wrong assertion directions and tautological property tests (#96)
99118
- Fix overly loose CLI integration test assertions (#95)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Crosslink
22

3-
[![Crates.io](https://img.shields.io/crates/v/crosslink-tracker?style=flat-square)](https://crates.io/crates/crosslink-tracker)
4-
[![Downloads](https://img.shields.io/crates/d/crosslink-tracker?style=flat-square)](https://crates.io/crates/crosslink-tracker)
5-
[![License: MIT](https://img.shields.io/crates/l/crosslink-tracker?style=flat-square)](LICENSE)
3+
[![Crates.io](https://img.shields.io/crates/v/crosslink?style=flat-square)](https://crates.io/crates/crosslink)
4+
[![Downloads](https://img.shields.io/crates/d/crosslink?style=flat-square)](https://crates.io/crates/crosslink)
5+
[![License: MIT](https://img.shields.io/crates/l/crosslink?style=flat-square)](LICENSE)
66
![AI Generated](https://img.shields.io/badge/Code-AI_Generated-blue?style=flat-square&logo=probot&logoColor=white)
77

88
A simple, lean issue tracker CLI designed for AI-assisted development. Track tasks across sessions with context preservation.
@@ -43,7 +43,7 @@ A simple, lean issue tracker CLI designed for AI-assisted development. Track tas
4343

4444
```bash
4545
# Install from crates.io
46-
cargo install crosslink-tracker
46+
cargo install crosslink
4747
```
4848

4949
The binary is named `crosslink` and will be available in your PATH after install.

crosslink/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
## [0.1.1-alpha.1] - 2026-02-26
10+
911
### Added
1012

1113
- **Multi-agent shared issue coordination** — issues can now be shared across agents via a git coordination branch (`crosslink/locks`)

crosslink/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crosslink/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "crosslink-tracker"
3-
version = "0.1.3"
2+
name = "crosslink"
3+
version = "0.1.1-alpha.1"
44
edition = "2021"
55
description = "A lean issue tracker CLI for AI-assisted development sessions"
66
license = "MIT"

0 commit comments

Comments
 (0)