ticket-to-pr 1.2.1 → 1.2.2
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 +1 -1
- package/dist/cli.js +1 -1
- package/dist/config.js +1 -1
- package/package.json +17 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -624,7 +624,7 @@ export async function runInit() {
|
|
|
624
624
|
console.log(` ${DIM}Choose which Claude model each agent uses.${RESET}`);
|
|
625
625
|
console.log(` ${DIM}Sonnet = fast/cheap, Opus = best quality, Haiku = fastest/cheapest${RESET}\n`);
|
|
626
626
|
const modelChoices = [
|
|
627
|
-
{ label: 'sonnet', id: 'claude-sonnet-4-
|
|
627
|
+
{ label: 'sonnet', id: 'claude-sonnet-4-6' },
|
|
628
628
|
{ label: 'opus', id: 'claude-opus-4-6' },
|
|
629
629
|
{ label: 'haiku', id: 'claude-haiku-4-5-20251001' },
|
|
630
630
|
];
|
package/dist/config.js
CHANGED
|
@@ -48,7 +48,7 @@ export const CONFIG = {
|
|
|
48
48
|
EXECUTE_BUDGET_USD: 15.00,
|
|
49
49
|
// Agent models (env override → default)
|
|
50
50
|
get REVIEW_MODEL() {
|
|
51
|
-
return process.env.REVIEW_MODEL || 'claude-sonnet-4-
|
|
51
|
+
return process.env.REVIEW_MODEL || 'claude-sonnet-4-6';
|
|
52
52
|
},
|
|
53
53
|
get EXECUTE_MODEL() {
|
|
54
54
|
return process.env.EXECUTE_MODEL || 'claude-opus-4-6';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ticket-to-pr",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Drag a Notion ticket, get a pull request. AI-powered dev automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,6 +13,22 @@
|
|
|
13
13
|
"projects.example.json",
|
|
14
14
|
"README.md"
|
|
15
15
|
],
|
|
16
|
+
"homepage": "https://www.tickettopr.com",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/JohnRiceML/ticket-to-pr.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/JohnRiceML/ticket-to-pr/issues"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"notion",
|
|
26
|
+
"claude",
|
|
27
|
+
"ai",
|
|
28
|
+
"pull-request",
|
|
29
|
+
"automation",
|
|
30
|
+
"developer-tools"
|
|
31
|
+
],
|
|
16
32
|
"engines": {
|
|
17
33
|
"node": ">=18.0.0"
|
|
18
34
|
},
|