poe-code 3.0.132 → 3.0.133
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/README.md +18 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/prompts/github-issue-opened.md +20 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<h1>Poe Code ⚡</h1>
|
|
5
5
|
|
|
6
6
|
<a href="https://poe.com"><img src="https://img.shields.io/badge/Poe-Sign up-purple?logo=poe&logoColor=white&color=5D5CDE&style=for-the-badge" alt="Discord"></a>
|
|
7
|
-
<a href="https://www.npmjs.com/package/poe-code"><img alt="NPM version" src="https://img.shields.io/npm/v/
|
|
7
|
+
<a href="https://www.npmjs.com/package/poe-code"><img alt="NPM version" src="https://img.shields.io/npm/v/poe-code.svg?&style=for-the-badge&color=09B16B"></a>
|
|
8
8
|
<a href="https://discord.gg/joinpoe"><img src="https://img.shields.io/badge/Discord-Join-purple?logo=discord&logoColor=white&color=FF44D3&style=for-the-badge" alt="Discord"></a>
|
|
9
9
|
|
|
10
10
|
</div>
|
|
@@ -42,9 +42,25 @@ npx poe-code@latest configure codex # (or claude, opencode, kimi)
|
|
|
42
42
|
npx poe-code@latest unconfigure claude
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
## Authentication
|
|
46
|
+
|
|
47
|
+
Poe Code uses your [Poe API key](https://poe.com/api) for authentication. On first run, you'll be prompted to log in via your browser (OAuth). You can also provide your key directly:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Interactive login (opens browser)
|
|
51
|
+
npx poe-code@latest login
|
|
52
|
+
|
|
53
|
+
# Or pass your API key directly
|
|
54
|
+
npx poe-code@latest login --api-key <your-key>
|
|
55
|
+
|
|
56
|
+
# Or set it as an environment variable
|
|
57
|
+
export POE_API_KEY=<your-key>
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Credentials are stored locally in `~/.poe-code/`. Use `poe-code auth status` to check your login state.
|
|
46
61
|
|
|
47
62
|
```bash
|
|
63
|
+
# Remove all configuration and credentials
|
|
48
64
|
npx poe-code@latest logout
|
|
49
65
|
```
|
|
50
66
|
|
package/dist/index.js
CHANGED
|
@@ -28016,7 +28016,7 @@ var init_package = __esm({
|
|
|
28016
28016
|
"package.json"() {
|
|
28017
28017
|
package_default = {
|
|
28018
28018
|
name: "poe-code",
|
|
28019
|
-
version: "3.0.
|
|
28019
|
+
version: "3.0.133",
|
|
28020
28020
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
28021
28021
|
type: "module",
|
|
28022
28022
|
main: "./dist/index.js",
|