@gojinko/plugin 2.1.0 → 2.1.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/.claude-plugin/plugin.json +2 -2
- package/.codex-plugin/plugin.json +2 -2
- package/README.md +1 -1
- package/package.json +2 -2
- package/skills/account/SKILL.md +2 -2
- package/skills/cli/SKILL.md +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jinko",
|
|
3
3
|
"description": "Search flights, book trips, and manage bookings with the Jinko Travel API. Connects to the Jinko MCP server for live flight pricing, trip management, and payment.",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jinko",
|
|
7
7
|
"url": "https://gojinko.com"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://gojinko.com",
|
|
10
10
|
"repository": "https://github.com/gojinko/jinko-dev-tools",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"keywords": [
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jinko",
|
|
3
3
|
"description": "Search flights, book trips, and manage bookings with the Jinko Travel API. Connects to the Jinko MCP server for live flight pricing, trip management, and payment.",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jinko",
|
|
7
7
|
"url": "https://gojinko.com"
|
|
8
8
|
},
|
|
9
|
-
"homepage": "https://
|
|
9
|
+
"homepage": "https://gojinko.com",
|
|
10
10
|
"repository": "https://github.com/gojinko/jinko-dev-tools",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"keywords": [
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Plugin for **Claude Code** and **OpenAI Codex** that enables flight search, trip
|
|
|
12
12
|
|
|
13
13
|
### 1. Get an API key
|
|
14
14
|
|
|
15
|
-
Sign up at [
|
|
15
|
+
Sign up at [gojinko.com/dashboard](https://gojinko.com/dashboard) and create an API key from the dashboard.
|
|
16
16
|
|
|
17
17
|
### 2. Set your API key
|
|
18
18
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gojinko/plugin",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Jinko Travel plugin for Claude Code and OpenAI Codex — flight search, booking, and trip management via MCP",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Jinko <dev@gojinko.com>",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://gojinko.com",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/gojinko/jinko-dev-tools",
|
package/skills/account/SKILL.md
CHANGED
|
@@ -5,13 +5,13 @@ description: Set up and manage your Jinko developer account — registration, AP
|
|
|
5
5
|
|
|
6
6
|
# Developer Account
|
|
7
7
|
|
|
8
|
-
Manage your Jinko developer account via the [Jinko
|
|
8
|
+
Manage your Jinko developer account via the [Jinko Dashboard](https://gojinko.com/dashboard).
|
|
9
9
|
|
|
10
10
|
Account management is handled through the web dashboard — there are no MCP tools for account operations. Guide the user to the dashboard for any account-related tasks.
|
|
11
11
|
|
|
12
12
|
## Getting started
|
|
13
13
|
|
|
14
|
-
1. **Register** — go to [
|
|
14
|
+
1. **Register** — go to [gojinko.com/dashboard](https://gojinko.com/dashboard) and sign up with your email.
|
|
15
15
|
2. **Create an API key** — in the dashboard, go to API Keys and create a new key. The full key (prefixed `jnk_`) is shown only once — save it immediately.
|
|
16
16
|
3. **Set your key** — configure your environment:
|
|
17
17
|
- CLI: `jinko auth login` (OAuth) or set `JINKO_API_KEY=jnk_...`
|
package/skills/cli/SKILL.md
CHANGED
|
@@ -135,5 +135,5 @@ jinko refund status --ref JNK-A7B3X9 --last-name Doe
|
|
|
135
135
|
## See also
|
|
136
136
|
|
|
137
137
|
- MCP-tool equivalents: sibling skills `search-flights`, `search-hotels`, `book-trip`, `manage-booking`
|
|
138
|
-
- API docs: `https://
|
|
138
|
+
- API docs: `https://docs.gojinko.com`
|
|
139
139
|
- Source: `packages/cli/src/commands/` in the `jinko-dev-tools` repo
|