Darkmatter · github-bot stage: prod
preview@internal.darkmatter
Events received
89117
Ignored
89070
Jobs dispatched
47

Event d71e19d0…

← All events

Event

Delivery
d71e19d0-5ee2-11f1-8246-d24ee8212018
Event
issue_comment
Action
created
Received
2026-06-03T00:26:20.238Z
Signature
valid
Parsed
yes
Sender
czxtm
Repo
darkmatter/platform
Status
ignored — missing_command

Headers

{
  "accept": "*/*",
  "accept-encoding": "gzip, br",
  "cf-connecting-ip": "140.82.115.249",
  "cf-ipcountry": "US",
  "cf-ray": "a05a90d47f955001",
  "cf-visitor": "{\"scheme\":\"https\"}",
  "connection": "Keep-Alive",
  "content-length": "15515",
  "content-type": "application/json",
  "host": "github-bot.darkmatter.io",
  "user-agent": "GitHub-Hookshot/933e3d3",
  "x-forwarded-proto": "https",
  "x-github-delivery": "d71e19d0-5ee2-11f1-8246-d24ee8212018",
  "x-github-event": "issue_comment",
  "x-github-hook-id": "628737947",
  "x-github-hook-installation-target-id": "3663660",
  "x-github-hook-installation-target-type": "integration",
  "x-real-ip": "140.82.115.249"
}

Payload

{
  "action": "created",
  "issue": {
    "url": "https://api.github.com/repos/darkmatter/platform/issues/27",
    "repository_url": "https://api.github.com/repos/darkmatter/platform",
    "labels_url": "https://api.github.com/repos/darkmatter/platform/issues/27/labels{/name}",
    "comments_url": "https://api.github.com/repos/darkmatter/platform/issues/27/comments",
    "events_url": "https://api.github.com/repos/darkmatter/platform/issues/27/events",
    "html_url": "https://github.com/darkmatter/platform/pull/27",
    "id": 4573653324,
    "node_id": "PR_kwDOSKDio87h5o3v",
    "number": 27,
    "title": "feat(funding-screener): HL funding-rate screener micro-app",
    "user": {
      "login": "czxtm",
      "id": 1325802,
      "node_id": "MDQ6VXNlcjEzMjU4MDI=",
      "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/czxtm",
      "html_url": "https://github.com/czxtm",
      "followers_url": "https://api.github.com/users/czxtm/followers",
      "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
      "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
      "organizations_url": "https://api.github.com/users/czxtm/orgs",
      "repos_url": "https://api.github.com/users/czxtm/repos",
      "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
      "received_events_url": "https://api.github.com/users/czxtm/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "labels": [],
    "state": "open",
    "locked": false,
    "assignees": [],
    "milestone": null,
    "comments": 1,
    "created_at": "2026-06-02T17:36:23Z",
    "updated_at": "2026-06-03T00:26:18Z",
    "closed_at": null,
    "assignee": null,
    "author_association": "MEMBER",
    "issue_field_values": [],
    "type": null,
    "active_lock_reason": null,
    "draft": false,
    "pull_request": {
      "url": "https://api.github.com/repos/darkmatter/platform/pulls/27",
      "html_url": "https://github.com/darkmatter/platform/pull/27",
      "diff_url": "https://github.com/darkmatter/platform/pull/27.diff",
      "patch_url": "https://github.com/darkmatter/platform/pull/27.patch",
      "merged_at": null
    },
    "body": "## Summary\n\n- Adds `apps/funding-screener` — a Cloudflare Worker that serves the standalone Hyperliquid funding-rate dashboard at `/`. The HTML page is a hand-port of `hl-funding-screener-standalone.html` (from the prototype output the task referenced), embedded into [src/index-html.ts](../blob/claude/priceless-hoover-4ec87e/apps/funding-screener/src/index-html.ts) as an exported string so the worker stays thin (per ADR 0003) and the test runner does not need extra config to load the page.\n- The page hits `api.hyperliquid.xyz/info` from the browser, so the worker has no business logic — just routes `/` (HTML), `/healthz` (JSON), and 404 otherwise.\n- Wires the new app into [.github/workflows/deploy.yml](../blob/claude/priceless-hoover-4ec87e/.github/workflows/deploy.yml): added to both the `deploy` and `cleanup` matrices, plus a smoke case (`base_name=darkmatter-funding-screener`, `endpoint=/healthz`).\n\n## Why this shape\n\n- Follows the same scaffolding as `apps/vault-analytics` exactly (alchemy.run.ts, wrangler.toml, tsconfig+build, no vitest config), so this app drops straight into the existing build / deploy / smoke pipeline.\n- The HTML is embedded rather than served from a static-asset binding so that:\n  - `vitest` can run the worker tests with no extra plugins.\n  - `tsc -p tsconfig.build.json` works the same way as every other CF Worker app.\n  - There is exactly one source of truth for the page (the TS string export).\n\n## Reviewer notes ⚠️\n\n- **Branch is ~40 commits behind `origin/main`** because the worktree predates the recent Access Guard rollout (`apps/api`, `apps/cli`, `apps/trader`, `apps/vault-analytics`, and the new gateway all got integrated). The PR diff itself is clean (GitHub uses merge-base), but on rebase you will almost certainly need to:\n  1. Reapply the deploy.yml matrix edit on top of the current file.\n  2. Decide whether this micro-app should also sit behind Access Guard, and if so wire it in the same way as the other apps.\n- I did not pull in those changes from main because `/create-pr` did not authorize cross-cutting rewrites — flagging here instead.\n\n## Test plan\n\n- [x] `bun run typecheck` — 17/17 ✅\n- [x] `bun run test` — 16/16 (5 new in `apps/funding-screener/test/worker.test.ts`) ✅\n- [x] `bun run lint` — 12/12 + ESM check + forbidden-imports check ✅\n- [x] `bun run build` in the new app — emits `dist/index-html.js` (worker.ts excluded, matching other apps)\n- [ ] On the preview deploy: load `/` in a browser and confirm the funding tables populate from `api.hyperliquid.xyz`; `/healthz` returns `{ok:true,app:\"funding-screener\"}`.\n- [ ] Verify the smoke step in the deploy job actually finds `darkmatter-funding-screener-pr-N.drtkmttr.workers.dev`.\n\n🤖 Generated with [Claude Code](https://claude.com/claude-code)\n\n<!-- codesmith:footer -->\n---\n<a href=\"https://app.blacksmith.sh/darkmatter/codesmith/platform/pr/27\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-light-v2.svg\"><img alt=\"View with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/view-with-codesmith-dark-v2.svg\"></picture></a> <a href=\"https://backend.blacksmith.sh/track/enable-autofix?expires=1783013786&installation_id=137091173&pr_number=27&repository=darkmatter%2Fplatform&return_to=https%3A%2F%2Fgithub.com%2Fdarkmatter%2Fplatform%2Fpull%2F27&signature=5a150faff1911f7c33a07ce494089b2f63fec4aee0ad098e21c2f8121ff83890\"><picture><source media=\"(prefers-color-scheme: dark)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"><source media=\"(prefers-color-scheme: light)\" srcset=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-light.svg\"><img alt=\"Autofix with Codesmith\" src=\"https://pr-comments-assets.blacksmith.sh/codesmith/autofix-with-codesmith-dark.svg\"></picture></a>\n<sup>Need help on this PR? Tag <code>@codesmith</code> with what you need. Autofix is disabled.</sup>\n\n<!-- codesmith:autofix:disabled -->\n<!-- /codesmith:footer -->",
    "reactions": {
      "url": "https://api.github.com/repos/darkmatter/platform/issues/27/reactions",
      "total_count": 0,
      "+1": 0,
      "-1": 0,
      "laugh": 0,
      "hooray": 0,
      "confused": 0,
      "heart": 0,
      "rocket": 0,
      "eyes": 0
    },
    "timeline_url": "https://api.github.com/repos/darkmatter/platform/issues/27/timeline",
    "performed_via_github_app": null,
    "state_reason": null
  },
  "comment": {
    "url": "https://api.github.com/repos/darkmatter/platform/issues/comments/4608057393",
    "html_url": "https://github.com/darkmatter/platform/pull/27#issuecomment-4608057393",
    "issue_url": "https://api.github.com/repos/darkmatter/platform/issues/27",
    "id": 4608057393,
    "node_id": "IC_kwDOSKDio88AAAABEqlgMQ",
    "user": {
      "login": "czxtm",
      "id": 1325802,
      "node_id": "MDQ6VXNlcjEzMjU4MDI=",
      "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/czxtm",
      "html_url": "https://github.com/czxtm",
      "followers_url": "https://api.github.com/users/czxtm/followers",
      "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
      "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
      "organizations_url": "https://api.github.com/users/czxtm/orgs",
      "repos_url": "https://api.github.com/users/czxtm/repos",
      "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
      "received_events_url": "https://api.github.com/users/czxtm/received_events",
      "type": "User",
      "user_view_type": "public",
      "site_admin": false
    },
    "created_at": "2026-06-03T00:26:18Z",
    "updated_at": "2026-06-03T00:26:18Z",
    "body": "@copilot resolve the merge conflicts in this pull request",
    "author_association": "MEMBER",
    "reactions": {
      "url": "https://api.github.com/repos/darkmatter/platform/issues/comments/4608057393/reactions",
      "total_count": 0,
      "+1": 0,
      "-1": 0,
      "laugh": 0,
      "hooray": 0,
      "confused": 0,
      "heart": 0,
      "rocket": 0,
      "eyes": 0
    },
    "performed_via_github_app": null
  },
  "repository": {
    "id": 1218503331,
    "node_id": "R_kgDOSKDiow",
    "name": "platform",
    "full_name": "darkmatter/platform",
    "private": true,
    "owner": {
      "login": "darkmatter",
      "id": 17834193,
      "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
      "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/darkmatter",
      "html_url": "https://github.com/darkmatter",
      "followers_url": "https://api.github.com/users/darkmatter/followers",
      "following_url": "https://api.github.com/users/darkmatter/following{/other_user}",
      "gists_url": "https://api.github.com/users/darkmatter/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/darkmatter/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/darkmatter/subscriptions",
      "organizations_url": "https://api.github.com/users/darkmatter/orgs",
      "repos_url": "https://api.github.com/users/darkmatter/repos",
      "events_url": "https://api.github.com/users/darkmatter/events{/privacy}",
      "received_events_url": "https://api.github.com/users/darkmatter/received_events",
      "type": "Organization",
      "user_view_type": "public",
      "site_admin": false
    },
    "html_url": "https://github.com/darkmatter/platform",
    "description": null,
    "fork": false,
    "url": "https://api.github.com/repos/darkmatter/platform",
    "forks_url": "https://api.github.com/repos/darkmatter/platform/forks",
    "keys_url": "https://api.github.com/repos/darkmatter/platform/keys{/key_id}",
    "collaborators_url": "https://api.github.com/repos/darkmatter/platform/collaborators{/collaborator}",
    "teams_url": "https://api.github.com/repos/darkmatter/platform/teams",
    "hooks_url": "https://api.github.com/repos/darkmatter/platform/hooks",
    "issue_events_url": "https://api.github.com/repos/darkmatter/platform/issues/events{/number}",
    "events_url": "https://api.github.com/repos/darkmatter/platform/events",
    "assignees_url": "https://api.github.com/repos/darkmatter/platform/assignees{/user}",
    "branches_url": "https://api.github.com/repos/darkmatter/platform/branches{/branch}",
    "tags_url": "https://api.github.com/repos/darkmatter/platform/tags",
    "blobs_url": "https://api.github.com/repos/darkmatter/platform/git/blobs{/sha}",
    "git_tags_url": "https://api.github.com/repos/darkmatter/platform/git/tags{/sha}",
    "git_refs_url": "https://api.github.com/repos/darkmatter/platform/git/refs{/sha}",
    "trees_url": "https://api.github.com/repos/darkmatter/platform/git/trees{/sha}",
    "statuses_url": "https://api.github.com/repos/darkmatter/platform/statuses/{sha}",
    "languages_url": "https://api.github.com/repos/darkmatter/platform/languages",
    "stargazers_url": "https://api.github.com/repos/darkmatter/platform/stargazers",
    "contributors_url": "https://api.github.com/repos/darkmatter/platform/contributors",
    "subscribers_url": "https://api.github.com/repos/darkmatter/platform/subscribers",
    "subscription_url": "https://api.github.com/repos/darkmatter/platform/subscription",
    "commits_url": "https://api.github.com/repos/darkmatter/platform/commits{/sha}",
    "git_commits_url": "https://api.github.com/repos/darkmatter/platform/git/commits{/sha}",
    "comments_url": "https://api.github.com/repos/darkmatter/platform/comments{/number}",
    "issue_comment_url": "https://api.github.com/repos/darkmatter/platform/issues/comments{/number}",
    "contents_url": "https://api.github.com/repos/darkmatter/platform/contents/{+path}",
    "compare_url": "https://api.github.com/repos/darkmatter/platform/compare/{base}...{head}",
    "merges_url": "https://api.github.com/repos/darkmatter/platform/merges",
    "archive_url": "https://api.github.com/repos/darkmatter/platform/{archive_format}{/ref}",
    "downloads_url": "https://api.github.com/repos/darkmatter/platform/downloads",
    "issues_url": "https://api.github.com/repos/darkmatter/platform/issues{/number}",
    "pulls_url": "https://api.github.com/repos/darkmatter/platform/pulls{/number}",
    "milestones_url": "https://api.github.com/repos/darkmatter/platform/milestones{/number}",
    "notifications_url": "https://api.github.com/repos/darkmatter/platform/notifications{?since,all,participating}",
    "labels_url": "https://api.github.com/repos/darkmatter/platform/labels{/name}",
    "releases_url": "https://api.github.com/repos/darkmatter/platform/releases{/id}",
    "deployments_url": "https://api.github.com/repos/darkmatter/platform/deployments",
    "created_at": "2026-04-23T00:12:38Z",
    "updated_at": "2026-05-29T07:31:48Z",
    "pushed_at": "2026-06-02T17:35:57Z",
    "git_url": "git://github.com/darkmatter/platform.git",
    "ssh_url": "git@github.com:darkmatter/platform.git",
    "clone_url": "https://github.com/darkmatter/platform.git",
    "svn_url": "https://github.com/darkmatter/platform",
    "homepage": null,
    "size": 498,
    "stargazers_count": 0,
    "watchers_count": 0,
    "language": "TypeScript",
    "has_issues": true,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": false,
    "has_discussions": false,
    "forks_count": 0,
    "mirror_url": null,
    "archived": false,
    "disabled": false,
    "open_issues_count": 1,
    "license": {
      "key": "apache-2.0",
      "name": "Apache License 2.0",
      "spdx_id": "Apache-2.0",
      "url": "https://api.github.com/licenses/apache-2.0",
      "node_id": "MDc6TGljZW5zZTI="
    },
    "allow_forking": false,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": [],
    "visibility": "internal",
    "forks": 0,
    "open_issues": 1,
    "watchers": 0,
    "default_branch": "main",
    "custom_properties": {}
  },
  "organization": {
    "login": "darkmatter",
    "id": 17834193,
    "node_id": "MDEyOk9yZ2FuaXphdGlvbjE3ODM0MTkz",
    "url": "https://api.github.com/orgs/darkmatter",
    "repos_url": "https://api.github.com/orgs/darkmatter/repos",
    "events_url": "https://api.github.com/orgs/darkmatter/events",
    "hooks_url": "https://api.github.com/orgs/darkmatter/hooks",
    "issues_url": "https://api.github.com/orgs/darkmatter/issues",
    "members_url": "https://api.github.com/orgs/darkmatter/members{/member}",
    "public_members_url": "https://api.github.com/orgs/darkmatter/public_members{/member}",
    "avatar_url": "https://avatars.githubusercontent.com/u/17834193?v=4",
    "description": ""
  },
  "enterprise": {
    "id": 469843,
    "slug": "darkmatter",
    "name": "darkmatter",
    "node_id": "E_kgDOAAcrUw",
    "avatar_url": "https://avatars.githubusercontent.com/b/469843?v=4",
    "description": "",
    "website_url": "darkmatter.io",
    "html_url": "https://github.com/enterprises/darkmatter",
    "created_at": "2025-09-07T16:01:00Z",
    "updated_at": "2026-05-09T15:34:55Z"
  },
  "sender": {
    "login": "czxtm",
    "id": 1325802,
    "node_id": "MDQ6VXNlcjEzMjU4MDI=",
    "avatar_url": "https://avatars.githubusercontent.com/u/1325802?v=4",
    "gravatar_id": "",
    "url": "https://api.github.com/users/czxtm",
    "html_url": "https://github.com/czxtm",
    "followers_url": "https://api.github.com/users/czxtm/followers",
    "following_url": "https://api.github.com/users/czxtm/following{/other_user}",
    "gists_url": "https://api.github.com/users/czxtm/gists{/gist_id}",
    "starred_url": "https://api.github.com/users/czxtm/starred{/owner}{/repo}",
    "subscriptions_url": "https://api.github.com/users/czxtm/subscriptions",
    "organizations_url": "https://api.github.com/users/czxtm/orgs",
    "repos_url": "https://api.github.com/users/czxtm/repos",
    "events_url": "https://api.github.com/users/czxtm/events{/privacy}",
    "received_events_url": "https://api.github.com/users/czxtm/received_events",
    "type": "User",
    "user_view_type": "public",
    "site_admin": false
  },
  "installation": {
    "id": 131074261,
    "node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMTMxMDc0MjYx"
  }
}