-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "trending-ai",
"version": "1.0.0",
"type": "module",
"//": "TrendingAI hackathon bundle. The canonical entry point is the /trendingai skill (.claude/skills/TrendingAI/). The scripts below are the building blocks the skill orchestrates. Synthesis stages (features:sentiment, features:creator-recs, features:podcast-themes, features:industry-news) are DEPRECATED for direct invocation post-2026-06-15 because they spawn `claude --print` which lost subscription billing. The skill orchestrator does the synthesis inline in Opus 4.7 instead. Run `claude` from this directory, then type /trendingai.",
"scripts": {
"harvest:hn": "bun src/harvesters/hn.ts",
"harvest:arxiv": "bun src/harvesters/arxiv.ts",
"harvest:github": "bun src/harvesters/github.ts",
"harvest:x": "bun src/harvesters/x.ts",
"harvest:frontier": "bun src/harvesters/frontier.ts",
"harvest:youtube": "bun src/harvesters/youtube.ts",
"harvest:reddit": "bun src/harvesters/reddit.ts",
"harvest:bluesky": "bun src/harvesters/bluesky.ts",
"harvest:tiktok": "bun src/harvesters/tiktok.ts",
"harvest:instagram": "bun src/harvesters/instagram.ts",
"harvest:editorial": "bun src/harvesters/editorial.ts",
"harvest:enterprise": "bun src/harvesters/enterprise.ts",
"harvest:all": "bun src/harvesters/orchestrator.ts",
"make-fixtures": "bun scripts/make-fixtures.ts",
"harvest:x-replies": "bun src/harvesters/x-replies.ts",
"harvest:features-deep": "bun src/harvesters/features-deep.ts",
"hydrate:ig-transcripts": "bun scripts/hydrate-ig-transcripts.ts",
"validate:relevance": "bun src/validate-relevance.ts",
"validate:transcript": "bun src/validate-transcript.ts",
"comment-sentiment": "bun src/comment-sentiment.ts",
"snapshot": "bun src/snapshots/write.ts",
"check:benchmark": "bun scripts/check-benchmark.ts",
"test": "bun test",
"features:first": "bun src/features-first.ts",
"features:one-to-watch": "bun scripts/classify-one-to-watch.ts",
"features:captions": "bun scripts/fetch-captions-and-match.ts",
"features:render": "bun src/render-features-first.ts",
"features:envelopes": "bun scripts/build-sentiment-envelopes.ts",
"features:render-only": "bun src/features-first.ts && bun scripts/classify-one-to-watch.ts && bun scripts/fetch-captions-and-match.ts && bun src/render-features-first.ts",
"features:sentiment:legacy": "bun src/feature-sentiment.ts",
"features:creator-recs:legacy": "bun scripts/add-creator-recs.ts",
"features:podcast-themes:legacy": "bun src/podcast-themes.ts",
"features:industry-news:legacy": "bun src/industry-news.ts",
"report:open": "open out/features-confirmed.html"
},
"devDependencies": {
"@types/bun": "latest"
}
}