ask-linear 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +7 -0
- data/lib/ask/linear/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f265ff898f54f516184e47dd1c54f88ee22e20277070205131829ec0e9836dd
|
|
4
|
+
data.tar.gz: 2d971ac5edc837b3b33adf65670513047378ebc0fa2b0bebfc12f75f85d43797
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0af85a2afe4f6f267b806c7af2871fe281b2518640b79c06f8c34e653e41292076d40af48f861442ecbc9bf1161d75a69d1d7cdb2bcec0e56f2c7ce35ea1a779
|
|
7
|
+
data.tar.gz: 1ef6e1d7f287555da83216e3844198a0b440bf6ce6c020f845462b9f8c8a64ebc32d81139cb8cec9903b6e7a66127021f62729325fe2937fb50a4db24e351059
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 2026-09-22
|
|
2
|
+
|
|
3
|
+
### Deprecated
|
|
4
|
+
|
|
5
|
+
- `ask-linear` is deprecated in favor of Linear's official MCP server:
|
|
6
|
+
https://linear.app/docs/mcp (remote endpoint: `https://mcp.linear.app/mcp`).
|
|
7
|
+
Existing installations may continue to work, but this repository will
|
|
8
|
+
receive no further feature development. See the official MCP source for
|
|
9
|
+
setup and capabilities.
|
|
10
|
+
|
|
1
11
|
## [0.1.2] - 2026-06-25
|
|
2
12
|
|
|
3
13
|
### Changed
|
data/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/ask-linear)
|
|
4
4
|
|
|
5
|
+
> **⚠️ DEPRECATED:** This gem is deprecated in favor of Linear's official MCP
|
|
6
|
+
> server. Use [Linear's official MCP server](https://linear.app/docs/mcp)
|
|
7
|
+
> (remote endpoint: `https://mcp.linear.app/mcp`) instead. Existing gem
|
|
8
|
+
> installations may continue to work, but this repository will receive no
|
|
9
|
+
> further feature development. See the official MCP documentation for setup
|
|
10
|
+
> instructions and capabilities.
|
|
11
|
+
|
|
5
12
|
Linear service context for AI agents in the ask-rb ecosystem. It provides an
|
|
6
13
|
authenticated GraphQL client for the Linear API, metadata constants for
|
|
7
14
|
system prompts, and a structured error guide for common Linear API issues.
|
data/lib/ask/linear/version.rb
CHANGED