@fink-andreas/pi-linear-tools 0.1.0 → 0.2.1
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.
- package/CHANGELOG.md +20 -1
- package/README.md +18 -2
- package/extensions/pi-linear-tools.js +449 -113
- package/index.js +916 -6
- package/package.json +6 -4
- package/src/auth/callback-server.js +337 -0
- package/src/auth/index.js +246 -0
- package/src/auth/oauth.js +281 -0
- package/src/auth/pkce.js +111 -0
- package/src/auth/token-refresh.js +210 -0
- package/src/auth/token-store.js +415 -0
- package/src/cli.js +238 -65
- package/src/handlers.js +18 -10
- package/src/linear-client.js +36 -6
- package/src/linear.js +16 -9
- package/src/settings.js +107 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## v0.
|
|
3
|
+
## v0.2.0 (2026-02-28)
|
|
4
|
+
|
|
5
|
+
OAuth 2.0 authentication and Markdown rendering release.
|
|
6
|
+
|
|
7
|
+
### New Features
|
|
8
|
+
- OAuth 2.0 authentication with PKCE (INN-242)
|
|
9
|
+
- Markdown rendering for tool outputs (INN-241)
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
- Improved milestone list/delete usability
|
|
13
|
+
- Fixed pi-tui/pi-coding-agent imports when installed from npm or source
|
|
14
|
+
- Better error messages for OAuth scope issues
|
|
15
|
+
- Fallback token storage when keychain is unavailable
|
|
16
|
+
|
|
17
|
+
### Notes
|
|
18
|
+
- npm package: `@fink-andreas/pi-linear-tools`
|
|
19
|
+
- git tag: `v0.2.0`
|
|
20
|
+
- GitHub release notes source: `RELEASE_NOTES_v0.2.0.md`
|
|
21
|
+
|
|
22
|
+
## v0.1.0 (2026-02-25)
|
|
4
23
|
|
|
5
24
|
Initial public release of `@fink-andreas/pi-linear-tools`.
|
|
6
25
|
|
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# pi-linear-tools
|
|
2
2
|
|
|
3
|
-
`pi-linear-tools` is a
|
|
3
|
+
`pi-linear-tools` is a Pi extension for the [Pi coding agent](https://github.com/badlogic/pi-mono) that lets you manage [Linear](https://linear.app/about) issues, projects, and milestones via LLM tools and CLI commands.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
### As a pi package (recommended)
|
|
8
8
|
```bash
|
|
9
|
-
pi install
|
|
9
|
+
pi install npm:@fink-andreas/pi-linear-tools
|
|
10
10
|
pi config
|
|
11
11
|
```
|
|
12
12
|
Enable the `pi-linear-tools` extension resource.
|
|
@@ -153,5 +153,21 @@ npm run release:check
|
|
|
153
153
|
node index.js --help
|
|
154
154
|
```
|
|
155
155
|
|
|
156
|
+
### Local extension debug flow (unpublished code)
|
|
157
|
+
|
|
158
|
+
Use project-local extension loading with a generated wrapper file:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
npm run dev:sync-local-extension
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Then in pi:
|
|
165
|
+
|
|
166
|
+
```text
|
|
167
|
+
/reload
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
If install/remove sources changed, restart pi before validating.
|
|
171
|
+
|
|
156
172
|
Release checklist: see `RELEASE.md`.
|
|
157
173
|
Post-release verification checklist: see `POST_RELEASE_CHECKLIST.md`.
|