thinking-phrases 1.0.1 → 2.0.0
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 +230 -142
- package/configs/hn-top.config.json +60 -27
- package/launchd/rss-update.error.log +3 -27
- package/launchd/rss-update.log +308 -0
- package/launchd/task-health.json +54 -0
- package/out/dwyl-quotes.json +1621 -0
- package/out/javascript-tips.json +107 -0
- package/out/league-loading-screen-tips.json +107 -0
- package/out/ruby-tips.json +115 -0
- package/out/settings-linux.json +87 -0
- package/out/settings-mac.json +87 -0
- package/out/settings-windows.json +87 -0
- package/out/typescript-tips.json +131 -0
- package/out/vscode-tips.json +87 -0
- package/out/wow-loading-screen-tips.json +116 -0
- package/package.json +19 -12
- package/scripts/build.ts +3 -3
- package/scripts/debug-hn-hydration.ts +33 -0
- package/scripts/run-rss-update.zsh +25 -3
- package/scripts/show-thinking-phrases-health.ts +74 -0
- package/scripts/trigger-thinking-phrases-scheduler.zsh +50 -0
- package/src/core/config.ts +65 -3
- package/src/core/githubModels.ts +200 -112
- package/src/core/interactive.ts +49 -67
- package/src/core/phraseCache.ts +242 -0
- package/src/core/phraseFormats.ts +243 -0
- package/src/core/presets.ts +1 -1
- package/src/core/runner.ts +246 -113
- package/src/core/scheduler.ts +1 -1
- package/src/core/taskHealth.ts +213 -0
- package/src/core/types.ts +32 -8
- package/src/core/utils.ts +27 -2
- package/src/sources/customJson.ts +28 -18
- package/src/sources/earthquakes.ts +4 -4
- package/src/sources/githubActivity.ts +120 -48
- package/src/sources/hackerNews.ts +19 -7
- package/src/sources/rss.ts +25 -11
- package/src/sources/stocks.ts +31 -10
- package/src/sources/weatherAlerts.ts +173 -7
- package/tsconfig.json +1 -1
- package/scripts/update-rss-settings.ts +0 -7
|
@@ -1,43 +1,76 @@
|
|
|
1
1
|
{
|
|
2
|
-
"limit":
|
|
2
|
+
"limit": 100,
|
|
3
3
|
"mode": "replace",
|
|
4
4
|
"target": "auto",
|
|
5
5
|
"verbose": false,
|
|
6
6
|
"debug": false,
|
|
7
|
-
"feeds": [
|
|
7
|
+
"feeds": [
|
|
8
|
+
{
|
|
9
|
+
"url": "https://github.blog/feed/"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"rssFetchIntervalSeconds": 21600,
|
|
8
13
|
"phraseFormatting": {
|
|
9
14
|
"includeSource": true,
|
|
10
15
|
"includeTime": true,
|
|
11
|
-
"maxLength": 140
|
|
16
|
+
"maxLength": 140,
|
|
17
|
+
"templates": {
|
|
18
|
+
"article": "%title% — %source% (%time%)",
|
|
19
|
+
"hackerNews": "%title% — HN %score% (%time%)",
|
|
20
|
+
"stock": "%symbol% %price% %change% %market%",
|
|
21
|
+
"githubCommit": "%headline% — %repo% %delta% @%author% (%time%)",
|
|
22
|
+
"githubFeed": "%action% — @%handle% (%time%)"
|
|
23
|
+
}
|
|
12
24
|
},
|
|
13
25
|
"githubModels": {
|
|
14
26
|
"enabled": true,
|
|
15
|
-
"
|
|
27
|
+
"endpoint": "https://models.github.ai/inference",
|
|
28
|
+
"model": "openai/gpt-5-mini",
|
|
16
29
|
"tokenEnvVar": "GITHUB_MODELS_TOKEN",
|
|
17
30
|
"maxInputItems": 10,
|
|
18
|
-
"
|
|
31
|
+
"maxInputTokens": 16000,
|
|
32
|
+
"maxTokens": 500,
|
|
33
|
+
"maxConcurrency": 3,
|
|
19
34
|
"maxPhrasesPerArticle": 2,
|
|
20
35
|
"temperature": 0.2,
|
|
21
36
|
"fetchArticleContent": true,
|
|
22
|
-
"maxArticleContentLength": 6000
|
|
37
|
+
"maxArticleContentLength": 6000,
|
|
38
|
+
"cacheTtlSeconds": 604800
|
|
23
39
|
},
|
|
24
40
|
"stockQuotes": {
|
|
25
|
-
"enabled":
|
|
41
|
+
"enabled": true,
|
|
26
42
|
"symbols": [
|
|
27
43
|
"MSFT",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
44
|
+
"TQQQ",
|
|
45
|
+
"GOOG",
|
|
30
46
|
"AMZN",
|
|
31
|
-
"
|
|
47
|
+
"ADBE",
|
|
48
|
+
"SPGI",
|
|
49
|
+
"NVDA",
|
|
50
|
+
"VOO",
|
|
51
|
+
"UNH",
|
|
52
|
+
"CPRT",
|
|
53
|
+
"DUOL",
|
|
54
|
+
"CLSK",
|
|
55
|
+
"META",
|
|
56
|
+
"BTC-USD",
|
|
57
|
+
"SGOV",
|
|
58
|
+
"IREN",
|
|
59
|
+
"CIFR",
|
|
60
|
+
"EL",
|
|
61
|
+
"WULF",
|
|
32
62
|
"AMD"
|
|
33
63
|
],
|
|
34
|
-
"includeMarketState": true
|
|
64
|
+
"includeMarketState": true,
|
|
65
|
+
"showClosed": false,
|
|
66
|
+
"fetchIntervalSeconds": 60
|
|
35
67
|
},
|
|
36
68
|
"hackerNews": {
|
|
37
69
|
"enabled": true,
|
|
38
70
|
"feed": "top",
|
|
39
|
-
"maxItems":
|
|
40
|
-
"minScore":
|
|
71
|
+
"maxItems": 20,
|
|
72
|
+
"minScore": 0,
|
|
73
|
+
"fetchIntervalSeconds": 300
|
|
41
74
|
},
|
|
42
75
|
"earthquakes": {
|
|
43
76
|
"enabled": false,
|
|
@@ -46,14 +79,15 @@
|
|
|
46
79
|
"windowHours": 24,
|
|
47
80
|
"limit": 10,
|
|
48
81
|
"radiusKm": 500,
|
|
49
|
-
"orderBy": "time"
|
|
82
|
+
"orderBy": "time",
|
|
83
|
+
"fetchIntervalSeconds": 1800
|
|
50
84
|
},
|
|
51
85
|
"weatherAlerts": {
|
|
52
|
-
"enabled":
|
|
53
|
-
"zipCode": "",
|
|
54
|
-
"area": "",
|
|
86
|
+
"enabled": true,
|
|
87
|
+
"zipCode": "33312",
|
|
55
88
|
"minimumSeverity": "moderate",
|
|
56
|
-
"limit": 10
|
|
89
|
+
"limit": 10,
|
|
90
|
+
"fetchIntervalSeconds": 1800
|
|
57
91
|
},
|
|
58
92
|
"customJson": {
|
|
59
93
|
"enabled": false,
|
|
@@ -66,18 +100,17 @@
|
|
|
66
100
|
"sourceLabel": "",
|
|
67
101
|
"dateField": "publishedAt",
|
|
68
102
|
"idField": "id",
|
|
69
|
-
"maxItems": 10
|
|
103
|
+
"maxItems": 10,
|
|
104
|
+
"fetchIntervalSeconds": 3600
|
|
70
105
|
},
|
|
71
106
|
"githubActivity": {
|
|
72
|
-
"enabled":
|
|
73
|
-
"mode": "
|
|
74
|
-
"repo": "microsoft/vscode",
|
|
107
|
+
"enabled": true,
|
|
108
|
+
"mode": "org-commits",
|
|
75
109
|
"org": "github",
|
|
76
|
-
"branch": "",
|
|
77
110
|
"feedKind": "timeline",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
111
|
+
"maxItems": 30,
|
|
112
|
+
"sinceHours": 1,
|
|
113
|
+
"tokenEnvVar": "GITHUB_TOKEN",
|
|
114
|
+
"fetchIntervalSeconds": 300
|
|
82
115
|
}
|
|
83
116
|
}
|
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
5
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
6
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
7
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
8
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
9
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
10
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
11
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
12
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
13
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
14
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
15
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
16
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
17
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
18
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
19
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
20
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
21
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
22
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
23
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
24
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
25
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
26
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
27
|
-
/Users/austenstone/.oh-my-zsh/oh-my-zsh.sh:55: ZSH_CUSTOM: parameter not set
|
|
1
|
+
GitHub Models formatting skipped — GitHub Models request failed.
|
|
2
|
+
GitHub Models formatting skipped — GitHub Models request failed.
|
|
3
|
+
GitHub Models formatting skipped — GitHub Models request failed.
|
package/launchd/rss-update.log
CHANGED
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
[2026-03-07T15:50:38Z] thinking-phrases scheduler run started
|
|
2
|
+
[2026-03-07T15:50:38Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
3
|
+
|
|
4
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
5
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
6
|
+
|
|
7
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
8
|
+
Replaced thinking phrases with 52 phrases from 5 source(s) using GitHub Models formatting when available
|
|
9
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
10
|
+
[2026-03-07T15:50:52Z] thinking-phrases scheduler run completed successfully
|
|
11
|
+
[2026-03-07T16:15:46Z] thinking-phrases scheduler run started
|
|
12
|
+
[2026-03-07T16:15:46Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
13
|
+
|
|
14
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
15
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
16
|
+
|
|
17
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
18
|
+
Replaced thinking phrases with 52 phrases from 5 source(s) using GitHub Models formatting when available
|
|
19
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
20
|
+
[2026-03-07T16:16:00Z] thinking-phrases scheduler run completed successfully
|
|
21
|
+
[2026-03-07T16:40:57Z] thinking-phrases scheduler run started
|
|
22
|
+
[2026-03-07T16:40:57Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
23
|
+
|
|
24
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
25
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
26
|
+
|
|
27
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
28
|
+
Replaced thinking phrases with 57 phrases from 5 source(s) using GitHub Models formatting when available
|
|
29
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
30
|
+
[2026-03-07T16:41:14Z] thinking-phrases scheduler run completed successfully
|
|
31
|
+
[2026-03-07T16:44:30Z] thinking-phrases scheduler run started
|
|
32
|
+
[2026-03-07T16:44:30Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
33
|
+
|
|
34
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
35
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
36
|
+
|
|
37
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
38
|
+
Replaced thinking phrases with 150 phrases from 5 source(s) using GitHub Models formatting when available
|
|
39
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
40
|
+
[2026-03-07T16:45:07Z] thinking-phrases scheduler run completed successfully
|
|
41
|
+
[2026-03-07T16:52:00Z] thinking-phrases scheduler run started
|
|
42
|
+
[2026-03-07T16:52:00Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
43
|
+
|
|
44
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
45
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
46
|
+
|
|
47
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
48
|
+
Replaced thinking phrases with 161 phrases from 5 source(s) using GitHub Models formatting when available
|
|
49
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
50
|
+
[2026-03-07T16:52:42Z] thinking-phrases scheduler run completed successfully
|
|
51
|
+
[2026-03-07T16:59:52Z] thinking-phrases scheduler run started
|
|
52
|
+
[2026-03-07T16:59:52Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
53
|
+
|
|
54
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
55
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
56
|
+
|
|
57
|
+
[2026-03-07T16:59:53Z] thinking-phrases scheduler run completed successfully
|
|
58
|
+
[2026-03-07T17:00:07Z] thinking-phrases scheduler run started
|
|
59
|
+
[2026-03-07T17:00:07Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
60
|
+
|
|
61
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
62
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
63
|
+
|
|
64
|
+
[2026-03-07T17:00:08Z] thinking-phrases scheduler run completed successfully
|
|
65
|
+
[2026-03-07T17:04:47Z] thinking-phrases scheduler run started
|
|
66
|
+
[2026-03-07T17:04:47Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
67
|
+
|
|
68
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
69
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
70
|
+
|
|
71
|
+
[2026-03-07T17:04:48Z] thinking-phrases scheduler run completed successfully
|
|
72
|
+
[2026-03-07T17:06:55Z] thinking-phrases scheduler run started
|
|
73
|
+
[2026-03-07T17:06:55Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
74
|
+
|
|
75
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
76
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
77
|
+
|
|
78
|
+
[2026-03-07T17:06:59Z] thinking-phrases scheduler run completed successfully
|
|
79
|
+
[2026-03-07T17:09:59Z] thinking-phrases scheduler run started
|
|
80
|
+
[2026-03-07T17:09:59Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
81
|
+
|
|
82
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
83
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
84
|
+
|
|
85
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
86
|
+
Replaced thinking phrases with 20 phrases from 5 source(s) using GitHub Models formatting when available
|
|
87
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
88
|
+
[2026-03-07T17:10:00Z] thinking-phrases scheduler run completed successfully
|
|
89
|
+
[2026-03-07T17:15:14Z] thinking-phrases scheduler run started
|
|
90
|
+
[2026-03-07T17:15:14Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
91
|
+
|
|
92
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
93
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
94
|
+
|
|
95
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
96
|
+
Replaced thinking phrases with 20 phrases from 5 source(s) using GitHub Models formatting when available
|
|
97
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
98
|
+
[2026-03-07T17:15:16Z] thinking-phrases scheduler run completed successfully
|
|
99
|
+
[2026-03-07T17:57:12Z] thinking-phrases scheduler run started
|
|
100
|
+
[2026-03-07T17:57:12Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
101
|
+
|
|
102
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
103
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
104
|
+
|
|
105
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
106
|
+
Replaced thinking phrases with 25 phrases from 5 source(s) using GitHub Models formatting when available
|
|
107
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
108
|
+
[2026-03-07T17:57:14Z] thinking-phrases scheduler run completed successfully
|
|
109
|
+
[2026-03-07T18:22:56Z] thinking-phrases scheduler run started
|
|
110
|
+
[2026-03-07T18:22:56Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
111
|
+
|
|
112
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
113
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
114
|
+
|
|
115
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
116
|
+
Replaced thinking phrases with 25 phrases from 5 source(s) using GitHub Models formatting when available
|
|
117
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
118
|
+
[2026-03-07T18:23:02Z] thinking-phrases scheduler run completed successfully
|
|
119
|
+
[2026-03-07T18:47:47Z] thinking-phrases scheduler run started
|
|
120
|
+
[2026-03-07T18:47:47Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
121
|
+
|
|
122
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
123
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
124
|
+
|
|
125
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
126
|
+
Replaced thinking phrases with 53 phrases from 5 source(s) using GitHub Models formatting when available
|
|
127
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
128
|
+
[2026-03-07T18:47:56Z] thinking-phrases scheduler run completed successfully
|
|
129
|
+
[2026-03-07T19:48:09Z] thinking-phrases scheduler run started
|
|
130
|
+
[2026-03-07T19:48:09Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
131
|
+
|
|
132
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
133
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
134
|
+
|
|
135
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
136
|
+
Replaced thinking phrases with 72 phrases from 5 source(s) using GitHub Models formatting when available
|
|
137
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
138
|
+
[2026-03-07T19:48:50Z] thinking-phrases scheduler run completed successfully
|
|
139
|
+
[2026-03-07T20:48:54Z] thinking-phrases scheduler run started
|
|
140
|
+
[2026-03-07T20:48:54Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
141
|
+
|
|
142
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
143
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
144
|
+
|
|
145
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
146
|
+
Replaced thinking phrases with 100 phrases from 5 source(s) using GitHub Models formatting when available
|
|
147
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
148
|
+
[2026-03-07T20:48:55Z] thinking-phrases scheduler run completed successfully
|
|
149
|
+
[2026-03-07T20:49:27Z] thinking-phrases scheduler run started
|
|
150
|
+
[2026-03-07T20:49:27Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
151
|
+
|
|
152
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
153
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
154
|
+
|
|
155
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
156
|
+
Replaced thinking phrases with 100 phrases from 5 source(s) using GitHub Models formatting when available
|
|
157
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
158
|
+
[2026-03-07T20:49:28Z] thinking-phrases scheduler run completed successfully
|
|
159
|
+
[2026-03-07T20:51:57Z] thinking-phrases scheduler run started
|
|
160
|
+
[2026-03-07T20:51:57Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
161
|
+
|
|
162
|
+
> thinking-phrases@1.0.1 phrases:run
|
|
163
|
+
> tsx scripts/update-thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
164
|
+
|
|
165
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
166
|
+
Replaced thinking phrases with 84 phrases from 5 source(s) using GitHub Models formatting when available
|
|
167
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
168
|
+
[2026-03-07T20:51:58Z] thinking-phrases scheduler run completed successfully
|
|
169
|
+
[2026-03-07T21:11:46Z] thinking-phrases scheduler run started
|
|
170
|
+
[2026-03-07T21:11:46Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
171
|
+
|
|
172
|
+
> thinking-phrases@1.0.1 start
|
|
173
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
174
|
+
|
|
175
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
176
|
+
Replaced thinking phrases with 70 phrases from 5 source(s) using GitHub Models formatting when available
|
|
177
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
178
|
+
[2026-03-07T21:11:51Z] thinking-phrases scheduler run completed successfully
|
|
179
|
+
[2026-03-07T22:12:01Z] thinking-phrases scheduler run started
|
|
180
|
+
[2026-03-07T22:12:01Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
181
|
+
|
|
182
|
+
> thinking-phrases@1.0.1 start
|
|
183
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
184
|
+
|
|
185
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
186
|
+
Replaced thinking phrases with 79 phrases from 5 source(s) using GitHub Models formatting when available
|
|
187
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
188
|
+
[2026-03-07T22:12:16Z] thinking-phrases scheduler run completed successfully
|
|
189
|
+
[2026-03-07T23:12:20Z] thinking-phrases scheduler run started
|
|
190
|
+
[2026-03-07T23:12:20Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
191
|
+
|
|
192
|
+
> thinking-phrases@1.0.1 start
|
|
193
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
194
|
+
|
|
195
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
196
|
+
Replaced thinking phrases with 78 phrases from 5 source(s) using GitHub Models formatting when available
|
|
197
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
198
|
+
[2026-03-07T23:12:40Z] thinking-phrases scheduler run completed successfully
|
|
199
|
+
[2026-03-08T00:12:43Z] thinking-phrases scheduler run started
|
|
200
|
+
[2026-03-08T00:12:43Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
201
|
+
|
|
202
|
+
> thinking-phrases@1.0.1 start
|
|
203
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
204
|
+
|
|
205
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
206
|
+
Replaced thinking phrases with 67 phrases from 5 source(s) using GitHub Models formatting when available
|
|
207
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
208
|
+
[2026-03-08T00:13:10Z] thinking-phrases scheduler run completed successfully
|
|
209
|
+
[2026-03-08T01:13:14Z] thinking-phrases scheduler run started
|
|
210
|
+
[2026-03-08T01:13:14Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
211
|
+
|
|
212
|
+
> thinking-phrases@1.0.1 start
|
|
213
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
214
|
+
|
|
215
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
216
|
+
Replaced thinking phrases with 76 phrases from 5 source(s) using GitHub Models formatting when available
|
|
217
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
218
|
+
[2026-03-08T01:13:41Z] thinking-phrases scheduler run completed successfully
|
|
219
|
+
[2026-03-08T02:13:46Z] thinking-phrases scheduler run started
|
|
220
|
+
[2026-03-08T02:13:46Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
221
|
+
|
|
222
|
+
> thinking-phrases@1.0.1 start
|
|
223
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
224
|
+
|
|
225
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
226
|
+
Replaced thinking phrases with 73 phrases from 5 source(s) using GitHub Models formatting when available
|
|
227
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
228
|
+
[2026-03-08T02:14:04Z] thinking-phrases scheduler run completed successfully
|
|
229
|
+
[2026-03-08T02:26:17Z] thinking-phrases scheduler run started
|
|
230
|
+
[2026-03-08T02:26:17Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
231
|
+
|
|
232
|
+
> thinking-phrases@1.0.1 start
|
|
233
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
234
|
+
|
|
235
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
236
|
+
Replaced thinking phrases with 67 phrases from 5 source(s) using GitHub Models formatting when available
|
|
237
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
238
|
+
[2026-03-08T02:26:18Z] thinking-phrases scheduler run completed successfully
|
|
239
|
+
[2026-03-08T02:31:27Z] thinking-phrases scheduler run started
|
|
240
|
+
[2026-03-08T02:31:27Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
241
|
+
|
|
242
|
+
> thinking-phrases@1.0.1 start
|
|
243
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
244
|
+
|
|
245
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
246
|
+
Replaced thinking phrases with 70 phrases from 5 source(s) using GitHub Models formatting when available
|
|
247
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
248
|
+
[2026-03-08T02:31:28Z] thinking-phrases scheduler run completed successfully
|
|
249
|
+
[2026-03-08T02:36:21Z] thinking-phrases scheduler run started
|
|
250
|
+
[2026-03-08T02:36:21Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
251
|
+
|
|
252
|
+
> thinking-phrases@1.0.1 start
|
|
253
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
254
|
+
|
|
255
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
256
|
+
Replaced thinking phrases with 67 phrases from 5 source(s) using GitHub Models formatting when available
|
|
257
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
258
|
+
[2026-03-08T02:36:22Z] thinking-phrases scheduler run completed successfully
|
|
259
|
+
[2026-03-08T03:06:37Z] thinking-phrases scheduler run started
|
|
260
|
+
[2026-03-08T03:06:38Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
261
|
+
|
|
262
|
+
> thinking-phrases@1.0.1 start
|
|
263
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
264
|
+
|
|
265
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
266
|
+
Replaced thinking phrases with 61 phrases from 5 source(s) using GitHub Models formatting when available
|
|
267
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
268
|
+
[2026-03-08T03:06:40Z] thinking-phrases scheduler run completed successfully
|
|
269
|
+
[2026-03-08T03:10:54Z] thinking-phrases scheduler run started
|
|
270
|
+
[2026-03-08T03:10:54Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
271
|
+
|
|
272
|
+
> thinking-phrases@1.1.0 start
|
|
273
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
274
|
+
|
|
275
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
276
|
+
Replaced thinking phrases with 65 phrases from 5 source(s) using GitHub Models formatting when available
|
|
277
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
278
|
+
[2026-03-08T03:10:56Z] thinking-phrases scheduler run completed successfully
|
|
279
|
+
[2026-03-08T03:24:40Z] thinking-phrases scheduler run started
|
|
280
|
+
[2026-03-08T03:24:40Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
281
|
+
|
|
282
|
+
> thinking-phrases@1.1.0 start
|
|
283
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
284
|
+
|
|
285
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
286
|
+
Replaced thinking phrases with 33 phrases from 5 source(s) using GitHub Models formatting when available
|
|
287
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
288
|
+
[2026-03-08T03:24:42Z] thinking-phrases scheduler run completed successfully
|
|
289
|
+
[2026-03-08T03:27:56Z] thinking-phrases scheduler run started
|
|
290
|
+
[2026-03-08T03:27:56Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
291
|
+
|
|
292
|
+
> thinking-phrases@1.1.0 start
|
|
293
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
294
|
+
|
|
295
|
+
Updated /Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json
|
|
296
|
+
Replaced thinking phrases with 33 phrases from 5 source(s) using GitHub Models formatting when available
|
|
297
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
298
|
+
[2026-03-08T03:27:58Z] thinking-phrases scheduler run completed successfully
|
|
299
|
+
[2026-03-08T03:47:51Z] thinking-phrases scheduler run started
|
|
300
|
+
[2026-03-08T03:47:51Z] config: /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
301
|
+
|
|
302
|
+
> thinking-phrases@1.1.0 start
|
|
303
|
+
> tsx bin/thinking-phrases.ts --config /Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json
|
|
304
|
+
|
|
305
|
+
Updated "/Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json"
|
|
306
|
+
Replaced thinking phrases with 44 phrases from 5 source(s) using GitHub Models formatting when available
|
|
307
|
+
Scheduler status: installed every 3600s → configs/hn-top.config.json
|
|
308
|
+
[2026-03-08T03:49:00Z] thinking-phrases scheduler run completed successfully
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"status": "succeeded",
|
|
3
|
+
"phase": "completed",
|
|
4
|
+
"startedAt": "2026-03-08T03:47:55.697Z",
|
|
5
|
+
"updatedAt": "2026-03-08T03:49:00.234Z",
|
|
6
|
+
"dryRun": false,
|
|
7
|
+
"configPath": "/Users/austenstone/source/vscode-copilot-tips/configs/hn-top.config.json",
|
|
8
|
+
"settingsPath": "/Users/austenstone/Library/Application Support/Code - Insiders/User/settings.json",
|
|
9
|
+
"pid": 13931,
|
|
10
|
+
"warnings": [],
|
|
11
|
+
"sources": [
|
|
12
|
+
{
|
|
13
|
+
"type": "rss",
|
|
14
|
+
"status": "pending"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "stocks",
|
|
18
|
+
"status": "succeeded",
|
|
19
|
+
"startedAt": "2026-03-08T03:47:55.715Z",
|
|
20
|
+
"completedAt": "2026-03-08T03:47:56.818Z",
|
|
21
|
+
"durationMs": 1103,
|
|
22
|
+
"itemCount": 1
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "hacker-news",
|
|
26
|
+
"status": "succeeded",
|
|
27
|
+
"startedAt": "2026-03-08T03:47:55.734Z",
|
|
28
|
+
"completedAt": "2026-03-08T03:47:57.323Z",
|
|
29
|
+
"durationMs": 1589,
|
|
30
|
+
"itemCount": 20
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "weather-alerts",
|
|
34
|
+
"status": "pending"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"type": "github-activity",
|
|
38
|
+
"status": "succeeded",
|
|
39
|
+
"startedAt": "2026-03-08T03:47:55.767Z",
|
|
40
|
+
"completedAt": "2026-03-08T03:47:58.116Z",
|
|
41
|
+
"durationMs": 2349,
|
|
42
|
+
"itemCount": 2
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"lastMessage": "Completed run with 44 phrases from 5 source(s)",
|
|
46
|
+
"summary": {
|
|
47
|
+
"sourceCount": 5,
|
|
48
|
+
"articleCount": 22,
|
|
49
|
+
"stockCount": 1,
|
|
50
|
+
"phraseCount": 44
|
|
51
|
+
},
|
|
52
|
+
"completedAt": "2026-03-08T03:49:00.234Z",
|
|
53
|
+
"durationMs": 64537
|
|
54
|
+
}
|