share-the-mark 0.3.0

share-the-mark CLI: receive design-feedback change-briefs from the browser extension and expose them to a coding agent
1
2
3
4
5
6
7
8
9
10
11
12
//! Canonical cross-discovery links (SPEC §11.2). The CLI and the browser
//! extension are useless apart, so the surfaces that hit a dead end (`serve`,
//! `request`, `setup`) point at the extension from here — one place to edit.
//! Mirrors the extension's `src/core/links.ts`. Swap in a store URL once approved.

/// Where to get the browser extension (and the project's home).
pub const HUB_URL: &str = "https://github.com/mpecan/share-the-mark";

/// One-line pointer to the extension, printed by the daemon banners.
pub fn extension_hint() -> String {
    format!("Annotate pages with the extension: {HUB_URL}")
}