stars-profile 1.0.2 → 1.0.4

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 CHANGED
@@ -2,7 +2,7 @@
2
2
  <br>
3
3
  <img src="logo.svg" alt="GitHub Stars" width="300">
4
4
  <br>
5
- `npx stars-profile`
5
+ <code>npx stars-profile</code>
6
6
  <br>
7
7
  </h1>
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stars-profile",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Manage GitHub Stars profile contributions using Copilot CLI deep research",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/research.js CHANGED
@@ -31,7 +31,7 @@ function detectLanguage(contributions) {
31
31
  .toLowerCase();
32
32
 
33
33
  const langSignals = {
34
- Turkish: ['hakkında', 'konuştum', 'etkinlik', 'üniversitesi', 'çağında', 'hala', 'gerekli', 'topluluk', 'ile', 'için', 'olarak', 'bir'],
34
+ Turkish: ['hakkında', 'konuştum', 'etkinlik', 'üniversitesi', 'topluluk'],
35
35
  Portuguese: ['sobre', 'como', 'para', 'uma', 'comunidade', 'desenvolvimento'],
36
36
  Spanish: ['sobre', 'cómo', 'para', 'una', 'comunidad', 'desarrollo', 'habló'],
37
37
  Japanese: ['について', 'です', 'した', 'ます'],
@@ -55,22 +55,27 @@ function detectLanguage(contributions) {
55
55
  function buildResearchPrompt(query) {
56
56
  return `Do deep research on "${query}" and find their public activities from the LAST 6 MONTHS ONLY (October 2025 – April 2026). Do NOT include older activities.
57
57
 
58
- Specifically search these platforms:
58
+ Specifically search these platforms using web search:
59
59
  - X (Twitter): Search x.com/search for recent posts and mentions about this person's talks, projects, and activities
60
+ - Bluesky: Search bsky.app for recent posts — especially announcements about speaking engagements, conferences, and meetups
60
61
  - LinkedIn: Search linkedin.com for their recent posts, articles, and event announcements
61
62
  - YouTube: Search for their recent talks, interviews, and podcast appearances
62
63
  - GitHub: Search for their recently active repositories and open source contributions
64
+ IMPORTANT for GitHub repos: For each repository found, visit the GitHub repo page and check the ACTUAL repository creation date (the "created" date shown on the repo). Use that date, NOT today's date. Do NOT assume a repo is new just because it has recent commits.
63
65
  - Google: General web search for recent conference appearances, blog posts, and news mentions
64
66
  - Dev.to, Medium, personal blogs: Search for articles they've recently written
67
+ - Conference/event websites: Search for speaker listings, schedules, and talk recordings
65
68
 
66
69
  IMPORTANT: Only include activities from the last 6 months. Skip anything older.
70
+ IMPORTANT: For open source projects, the date must be the actual GitHub repository creation date. Visit the repo page to verify.
71
+ IMPORTANT: For speaking engagements, search thoroughly — check Bluesky, X, LinkedIn, conference websites, and YouTube for any talks, workshops, or appearances.
67
72
 
68
73
  For each activity found, note:
69
74
  - What it is (talk, blog post, open source project, video, podcast, event, hackathon, etc.)
70
75
  - The title
71
76
  - The full URL/link (must be a complete URL starting with https://)
72
77
  - A brief description
73
- - The approximate date
78
+ - The approximate date (for repos: the actual creation date from GitHub)
74
79
 
75
80
  List everything you find. Be thorough — check multiple pages and sources, but only recent items.`;
76
81
  }