Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions data/verified-automations-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,12 @@
"reason": "It shows many signs of an automated account. Almost no activity, a sudden surge of commits and PRs, and over 100 repositories created in 2 days.",
"issueUrl": "https://github.com/MatteoGabriele/agentscan/issues/53",
"createdAt": "2026-04-21"
},
{
"username": "barry3406",
"id": 100205797,
"reason": "It follows the classic pattern of a dormant account suddenly showing a surge in commits, pull requests, and newly created external repositories.",
"issueUrl": "https://github.com/MatteoGabriele/agentscan/issues/59",
"createdAt": "$(date -u +%Y-%m-%d)"
Comment on lines +153 to +158
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Replace the shell template with a concrete date.

Line 158 will be parsed and returned literally as "$(date -u +%Y-%m-%d)"; nothing in server/api/verified-automations.get.ts expands it. This also breaks the existing YYYY-MM-DD convention used by the list.

🐛 Proposed fix
   {
     "username": "barry3406",
     "id": 100205797,
     "reason": "It follows the classic pattern of a dormant account suddenly showing a surge in commits, pull requests, and newly created external repositories.",
     "issueUrl": "https://github.com/MatteoGabriele/agentscan/issues/59",
-    "createdAt": "$(date -u +%Y-%m-%d)"
+    "createdAt": "2026-04-21"
   }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
{
"username": "barry3406",
"id": 100205797,
"reason": "It follows the classic pattern of a dormant account suddenly showing a surge in commits, pull requests, and newly created external repositories.",
"issueUrl": "https://github.com/MatteoGabriele/agentscan/issues/59",
"createdAt": "$(date -u +%Y-%m-%d)"
{
"username": "barry3406",
"id": 100205797,
"reason": "It follows the classic pattern of a dormant account suddenly showing a surge in commits, pull requests, and newly created external repositories.",
"issueUrl": "https://github.com/MatteoGabriele/agentscan/issues/59",
"createdAt": "2026-04-21"
}
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@data/verified-automations-list.json` around lines 153 - 158, The createdAt
field for the entry with username "barry3406" and id 100205797 currently
contains a shell template string; replace "$(date -u +%Y-%m-%d)" with a concrete
date string in the existing YYYY-MM-DD format (e.g., "2026-04-21" or the actual
date this entry was added) so the server/api/verified-automations.get.ts parser
receives a valid date literal.

}
]
Loading