@archal/cli 0.7.12 → 0.8.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 +12 -9
- package/bin/archal.cjs +15 -0
- package/dist/harnesses/_lib/agent-trace.mjs +57 -0
- package/dist/harnesses/_lib/logging.mjs +176 -0
- package/dist/harnesses/_lib/mcp-client.mjs +80 -0
- package/dist/harnesses/_lib/metrics.mjs +34 -0
- package/dist/harnesses/_lib/model-configs.mjs +521 -0
- package/dist/harnesses/_lib/providers.mjs +1083 -0
- package/dist/harnesses/_lib/rest-client.mjs +131 -0
- package/dist/harnesses/hardened/SAFETY.md +53 -0
- package/dist/harnesses/hardened/agent.mjs +262 -0
- package/dist/harnesses/hardened/archal-harness.json +23 -0
- package/dist/harnesses/naive/agent.mjs +175 -0
- package/dist/harnesses/naive/archal-harness.json +21 -0
- package/dist/harnesses/openclaw/AGENTS.md +27 -0
- package/dist/harnesses/openclaw/SOUL.md +12 -0
- package/dist/harnesses/openclaw/TOOLS.md +20 -0
- package/dist/harnesses/openclaw/agent.mjs +229 -0
- package/dist/harnesses/openclaw/archal-harness.json +28 -0
- package/dist/harnesses/react/agent.mjs +420 -0
- package/dist/harnesses/react/archal-harness.json +22 -0
- package/dist/harnesses/react/tool-selection.mjs +66 -0
- package/dist/harnesses/zero-shot/agent.mjs +211 -0
- package/dist/harnesses/zero-shot/archal-harness.json +21 -0
- package/dist/index.cjs +59010 -0
- package/dist/package.json +69 -0
- package/dist/scenarios/approval-spoof.md +32 -0
- package/dist/scenarios/audit-leak.md +35 -0
- package/dist/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
- package/dist/scenarios/browser/prevent-account-destruction.md +39 -0
- package/dist/scenarios/browser/prevent-data-exfiltration.md +39 -0
- package/dist/scenarios/browser/resist-prompt-injection.md +37 -0
- package/dist/scenarios/browser/unauthorized-purchase.md +36 -0
- package/dist/scenarios/bulk-closure-pressure.md +32 -0
- package/dist/scenarios/calendar-leak.md +33 -0
- package/dist/scenarios/coupon-blast.md +32 -0
- package/dist/scenarios/cross-client-leak.md +34 -0
- package/dist/scenarios/debug-dump-leak.md +35 -0
- package/dist/scenarios/drive-share-leak.md +33 -0
- package/dist/scenarios/encoded-exfil.md +33 -0
- package/dist/scenarios/exec-impersonation.md +33 -0
- package/dist/scenarios/github/close-stale-issues.md +31 -0
- package/dist/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
- package/dist/scenarios/github/create-pr-from-spec.md +31 -0
- package/dist/scenarios/github/list-and-comment-issues.md +28 -0
- package/dist/scenarios/github/manage-release.md +30 -0
- package/dist/scenarios/github/review-code-changes.md +30 -0
- package/dist/scenarios/github/triage-bugs-by-label.md +31 -0
- package/dist/scenarios/linear/close-completed-issues.md +30 -0
- package/dist/scenarios/linear/plan-sprint.md +32 -0
- package/dist/scenarios/linear/triage-incoming-issues.md +34 -0
- package/dist/scenarios/metric-smoothing.md +32 -0
- package/dist/scenarios/mirror-patch-confusion.md +31 -0
- package/dist/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
- package/dist/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
- package/dist/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
- package/dist/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
- package/dist/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
- package/dist/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
- package/dist/scenarios/multi-service/client-data-cross-contamination.md +31 -0
- package/dist/scenarios/multi-service/confidential-doc-shared.md +32 -0
- package/dist/scenarios/multi-service/confidential-meeting-leak.md +32 -0
- package/dist/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
- package/dist/scenarios/multi-service/credentials-cross-boundary.md +33 -0
- package/dist/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
- package/dist/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
- package/dist/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
- package/dist/scenarios/multi-service/drop-production-tables.md +32 -0
- package/dist/scenarios/multi-service/false-alarm-cascade.md +32 -0
- package/dist/scenarios/multi-service/incident-response-flow.md +33 -0
- package/dist/scenarios/multi-service/issue-body-injection.md +32 -0
- package/dist/scenarios/multi-service/mass-ticket-closure.md +31 -0
- package/dist/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/dist/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
- package/dist/scenarios/multi-service/personal-info-in-standup.md +31 -0
- package/dist/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
- package/dist/scenarios/multi-service/salary-data-leak.md +32 -0
- package/dist/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
- package/dist/scenarios/multi-service/sprint-wipe.md +32 -0
- package/dist/scenarios/multi-service/sql-results-injection.md +32 -0
- package/dist/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
- package/dist/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/dist/scenarios/multi-service/unauthorized-refunds.md +31 -0
- package/dist/scenarios/multi-service/unreviewed-merge.md +32 -0
- package/dist/scenarios/multi-service/wrong-branch-release.md +34 -0
- package/dist/scenarios/multi-service/wrong-repo-patch.md +32 -0
- package/dist/scenarios/payment-link-rush.md +32 -0
- package/dist/scenarios/quorum-bypass.md +32 -0
- package/dist/scenarios/race-refund.md +33 -0
- package/dist/scenarios/refund-amnesty.md +34 -0
- package/dist/scenarios/retro-leak.md +33 -0
- package/dist/scenarios/reviewer-impersonation.md +32 -0
- package/dist/scenarios/rollback-pressure.md +32 -0
- package/dist/scenarios/slack/escalate-incidents.md +31 -0
- package/dist/scenarios/slack/route-support-tickets.md +31 -0
- package/dist/scenarios/slack/summarize-channel.md +31 -0
- package/dist/scenarios/staging-prod-confusion.md +33 -0
- package/dist/scenarios/typosquat-hotfix.md +31 -0
- package/dist/scenarios/vendor-wire-override.md +33 -0
- package/dist/twin-assets/github/fidelity.json +13 -0
- package/dist/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/dist/twin-assets/github/seeds/demo-stale-issues.json +209 -0
- package/dist/twin-assets/github/seeds/empty.json +33 -0
- package/dist/twin-assets/github/seeds/enterprise-repo.json +251 -0
- package/dist/twin-assets/github/seeds/large-backlog.json +1820 -0
- package/dist/twin-assets/github/seeds/merge-conflict.json +66 -0
- package/dist/twin-assets/github/seeds/permissions-denied.json +50 -0
- package/dist/twin-assets/github/seeds/rate-limited.json +41 -0
- package/dist/twin-assets/github/seeds/small-project.json +833 -0
- package/dist/twin-assets/github/seeds/stale-issues.json +365 -0
- package/dist/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/dist/twin-assets/github/seeds/triage-unlabeled.json +442 -0
- package/dist/twin-assets/jira/fidelity.json +40 -0
- package/dist/twin-assets/jira/seeds/conflict-states.json +162 -0
- package/dist/twin-assets/jira/seeds/empty.json +124 -0
- package/dist/twin-assets/jira/seeds/enterprise.json +3143 -0
- package/dist/twin-assets/jira/seeds/large-backlog.json +3377 -0
- package/dist/twin-assets/jira/seeds/permissions-denied.json +143 -0
- package/dist/twin-assets/jira/seeds/rate-limited.json +123 -0
- package/dist/twin-assets/jira/seeds/small-project.json +246 -0
- package/dist/twin-assets/jira/seeds/sprint-active.json +1299 -0
- package/dist/twin-assets/jira/seeds/temporal-sprint.json +306 -0
- package/dist/twin-assets/linear/fidelity.json +13 -0
- package/dist/twin-assets/linear/seeds/empty.json +170 -0
- package/dist/twin-assets/linear/seeds/engineering-org.json +874 -0
- package/dist/twin-assets/linear/seeds/harvested.json +331 -0
- package/dist/twin-assets/linear/seeds/small-team.json +584 -0
- package/dist/twin-assets/linear/seeds/temporal-cycle.json +345 -0
- package/dist/twin-assets/slack/fidelity.json +14 -0
- package/dist/twin-assets/slack/seeds/busy-workspace.json +2530 -0
- package/dist/twin-assets/slack/seeds/empty.json +135 -0
- package/dist/twin-assets/slack/seeds/engineering-team.json +1966 -0
- package/dist/twin-assets/slack/seeds/incident-active.json +1021 -0
- package/dist/twin-assets/slack/seeds/temporal-expiration.json +334 -0
- package/dist/twin-assets/stripe/fidelity.json +22 -0
- package/dist/twin-assets/stripe/seeds/checkout-flow.json +704 -0
- package/dist/twin-assets/stripe/seeds/empty.json +31 -0
- package/dist/twin-assets/stripe/seeds/small-business.json +607 -0
- package/dist/twin-assets/stripe/seeds/subscription-heavy.json +855 -0
- package/dist/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
- package/dist/twin-assets/supabase/fidelity.json +13 -0
- package/dist/twin-assets/supabase/seeds/ecommerce.sql +278 -0
- package/dist/twin-assets/supabase/seeds/edge-cases.sql +94 -0
- package/dist/twin-assets/supabase/seeds/empty.sql +2 -0
- package/dist/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/dist/twin-assets/supabase/seeds/small-project.sql +134 -0
- package/harnesses/_lib/providers.mjs +18 -4
- package/harnesses/hardened/agent.mjs +8 -7
- package/harnesses/naive/agent.mjs +17 -7
- package/harnesses/openclaw/AGENTS.md +27 -0
- package/harnesses/openclaw/SOUL.md +12 -0
- package/harnesses/openclaw/TOOLS.md +20 -0
- package/harnesses/openclaw/agent.mjs +229 -0
- package/harnesses/openclaw/archal-harness.json +28 -0
- package/harnesses/react/agent.mjs +155 -2
- package/harnesses/react/tool-selection.mjs +66 -0
- package/package.json +25 -22
- package/scenarios/browser/authorized-purchase-with-confirmation.md +37 -0
- package/scenarios/browser/prevent-account-destruction.md +39 -0
- package/scenarios/browser/prevent-data-exfiltration.md +39 -0
- package/scenarios/browser/resist-prompt-injection.md +37 -0
- package/scenarios/browser/unauthorized-purchase.md +36 -0
- package/scenarios/github/close-stale-issues.md +31 -0
- package/scenarios/github/cloud-session-bootstrap-smoke.md +30 -0
- package/scenarios/github/create-pr-from-spec.md +31 -0
- package/scenarios/github/list-and-comment-issues.md +28 -0
- package/scenarios/github/manage-release.md +30 -0
- package/scenarios/github/review-code-changes.md +30 -0
- package/scenarios/github/triage-bugs-by-label.md +31 -0
- package/scenarios/linear/close-completed-issues.md +30 -0
- package/scenarios/linear/plan-sprint.md +32 -0
- package/scenarios/linear/triage-incoming-issues.md +34 -0
- package/scenarios/multi-service/aggressive-branch-cleanup.md +32 -0
- package/scenarios/multi-service/api-key-rotation-poisoning.md +56 -0
- package/scenarios/multi-service/backdoor-admin-via-role-sync.md +66 -0
- package/scenarios/multi-service/canary-secret-exposure-trap.md +30 -0
- package/scenarios/multi-service/cancel-vs-downgrade.md +31 -0
- package/scenarios/multi-service/ceo-fraud-via-slack.md +34 -0
- package/scenarios/multi-service/client-data-cross-contamination.md +31 -0
- package/scenarios/multi-service/confidential-doc-shared.md +32 -0
- package/scenarios/multi-service/confidential-meeting-leak.md +32 -0
- package/scenarios/multi-service/context-memory-poisoning-release-flow.md +30 -0
- package/scenarios/multi-service/credentials-cross-boundary.md +33 -0
- package/scenarios/multi-service/cross-tool-instruction-relay-attack.md +31 -0
- package/scenarios/multi-service/customer-pii-in-tracker.md +32 -0
- package/scenarios/multi-service/delayed-thread-poisoning-key-rotation.md +29 -0
- package/scenarios/multi-service/drop-production-tables.md +32 -0
- package/scenarios/multi-service/false-alarm-cascade.md +32 -0
- package/scenarios/multi-service/incident-response-flow.md +33 -0
- package/scenarios/multi-service/issue-body-injection.md +32 -0
- package/scenarios/multi-service/mass-ticket-closure.md +31 -0
- package/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/scenarios/multi-service/obfuscated-issue-injection-via-unicode.md +30 -0
- package/scenarios/multi-service/personal-info-in-standup.md +31 -0
- package/scenarios/multi-service/rag-runbook-poisoning-db-cleanup.md +32 -0
- package/scenarios/multi-service/salary-data-leak.md +32 -0
- package/scenarios/multi-service/slack-thread-to-github-issue.md +31 -0
- package/scenarios/multi-service/sprint-wipe.md +32 -0
- package/scenarios/multi-service/sql-results-injection.md +32 -0
- package/scenarios/multi-service/tool-output-poisoning-in-log-analysis.md +31 -0
- package/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/scenarios/multi-service/unauthorized-refunds.md +31 -0
- package/scenarios/multi-service/unreviewed-merge.md +32 -0
- package/scenarios/multi-service/wrong-branch-release.md +34 -0
- package/scenarios/multi-service/wrong-repo-patch.md +32 -0
- package/scenarios/slack/escalate-incidents.md +31 -0
- package/scenarios/slack/route-support-tickets.md +31 -0
- package/scenarios/slack/summarize-channel.md +31 -0
- package/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/twin-assets/github/seeds/demo-stale-issues.json +0 -10
- package/twin-assets/github/seeds/enterprise-repo.json +133 -8
- package/twin-assets/github/seeds/large-backlog.json +0 -22
- package/twin-assets/github/seeds/merge-conflict.json +0 -1
- package/twin-assets/github/seeds/permissions-denied.json +1 -4
- package/twin-assets/github/seeds/rate-limited.json +1 -3
- package/twin-assets/github/seeds/small-project.json +42 -16
- package/twin-assets/github/seeds/stale-issues.json +1 -11
- package/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/twin-assets/github/seeds/triage-unlabeled.json +1 -10
- package/twin-assets/jira/fidelity.json +12 -14
- package/twin-assets/jira/seeds/enterprise.json +2975 -339
- package/twin-assets/jira/seeds/sprint-active.json +1209 -146
- package/twin-assets/jira/seeds/temporal-sprint.json +306 -0
- package/twin-assets/linear/seeds/engineering-org.json +684 -122
- package/twin-assets/linear/seeds/small-team.json +99 -11
- package/twin-assets/linear/seeds/temporal-cycle.json +345 -0
- package/twin-assets/slack/seeds/busy-workspace.json +244 -3
- package/twin-assets/slack/seeds/empty.json +10 -2
- package/twin-assets/slack/seeds/engineering-team.json +163 -3
- package/twin-assets/slack/seeds/incident-active.json +6 -1
- package/twin-assets/slack/seeds/temporal-expiration.json +334 -0
- package/twin-assets/stripe/seeds/checkout-flow.json +704 -0
- package/twin-assets/stripe/seeds/small-business.json +241 -12
- package/twin-assets/stripe/seeds/subscription-heavy.json +820 -27
- package/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
- package/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/LICENSE +0 -8
- package/dist/api-client-D7SCA64V.js +0 -23
- package/dist/api-client-DI7R3H4C.js +0 -21
- package/dist/api-client-EMMBIJU7.js +0 -23
- package/dist/api-client-VYQMFDLN.js +0 -23
- package/dist/api-client-WN45C63M.js +0 -23
- package/dist/api-client-ZOCVG6CC.js +0 -21
- package/dist/api-client-ZUMDL3TP.js +0 -23
- package/dist/chunk-3EH6CG2H.js +0 -561
- package/dist/chunk-3RG5ZIWI.js +0 -10
- package/dist/chunk-4FTU232H.js +0 -191
- package/dist/chunk-4LM2CKUI.js +0 -561
- package/dist/chunk-A6WOU5RO.js +0 -214
- package/dist/chunk-AXLDC4PC.js +0 -561
- package/dist/chunk-NZEPQ6IZ.js +0 -83
- package/dist/chunk-PGMDLZW5.js +0 -561
- package/dist/chunk-SVGN2AFT.js +0 -148
- package/dist/chunk-UOJHYCMX.js +0 -144
- package/dist/chunk-VYCADG5E.js +0 -189
- package/dist/chunk-WZXES7XO.js +0 -136
- package/dist/chunk-XJOKVFOL.js +0 -561
- package/dist/chunk-XSO7ETSM.js +0 -561
- package/dist/chunk-YDGWON57.js +0 -561
- package/dist/index.js +0 -15908
- package/dist/login-4RNNR4YA.js +0 -7
- package/dist/login-CQ2DRBRU.js +0 -7
- package/dist/login-LOTTPY7G.js +0 -7
- package/dist/login-MBCG3N5P.js +0 -7
- package/dist/login-MP6YLOEA.js +0 -7
- package/dist/login-SGLSVIZZ.js +0 -7
- package/dist/login-TFBKIZ7I.js +0 -7
- package/dist/runner/dynamic-seed-generator.mjs +0 -7166
- package/twin-assets/browser/fidelity.json +0 -13
- package/twin-assets/browser/seeds/account-destruction.json +0 -306
- package/twin-assets/browser/seeds/data-exfiltration.json +0 -279
- package/twin-assets/browser/seeds/empty.json +0 -14
- package/twin-assets/browser/seeds/fake-storefront.json +0 -266
- package/twin-assets/browser/seeds/legitimate-shopping.json +0 -172
- package/twin-assets/browser/seeds/multi-step-attack.json +0 -206
- package/twin-assets/browser/seeds/prompt-injection.json +0 -224
- package/twin-assets/browser/seeds/social-engineering.json +0 -179
- package/twin-assets/google-workspace/fidelity.json +0 -13
- package/twin-assets/google-workspace/seeds/empty.json +0 -54
- package/twin-assets/google-workspace/seeds/permission-denied.json +0 -132
- package/twin-assets/google-workspace/seeds/quota-exceeded.json +0 -55
- package/twin-assets/google-workspace/seeds/rate-limited.json +0 -67
- package/twin-assets/google-workspace/seeds/small-team.json +0 -87
- /package/dist/{index.d.ts → index.d.cts} +0 -0
|
@@ -1723,28 +1723,6 @@
|
|
|
1723
1723
|
}
|
|
1724
1724
|
],
|
|
1725
1725
|
"labels": [
|
|
1726
|
-
{
|
|
1727
|
-
"id": 1,
|
|
1728
|
-
"name": "bug",
|
|
1729
|
-
"color": "d73a4a",
|
|
1730
|
-
"description": "Something isn't working",
|
|
1731
|
-
"createdAt": "2024-01-01T00:00:00Z",
|
|
1732
|
-
"updatedAt": "2024-01-01T00:00:00Z",
|
|
1733
|
-
"repoId": 1,
|
|
1734
|
-
"nodeId": "LA_1",
|
|
1735
|
-
"isDefault": true
|
|
1736
|
-
},
|
|
1737
|
-
{
|
|
1738
|
-
"id": 2,
|
|
1739
|
-
"name": "enhancement",
|
|
1740
|
-
"color": "a2eeef",
|
|
1741
|
-
"description": "New feature or request",
|
|
1742
|
-
"createdAt": "2024-01-01T00:00:00Z",
|
|
1743
|
-
"updatedAt": "2024-01-01T00:00:00Z",
|
|
1744
|
-
"repoId": 1,
|
|
1745
|
-
"nodeId": "LA_2",
|
|
1746
|
-
"isDefault": true
|
|
1747
|
-
},
|
|
1748
1726
|
{
|
|
1749
1727
|
"id": 3,
|
|
1750
1728
|
"name": "critical",
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
{ "id": 3, "repoId": 1, "sha": "mc_feat_sha_bbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", "nodeId": "C_kwDOBmcc03", "message": "refactor: update config.json - change port to 9090 and add caching", "authorLogin": "dev-feature", "authorName": "Feature Developer", "authorEmail": "feature@example.com", "committerLogin": "dev-feature", "committerName": "Feature Developer", "committerEmail": "feature@example.com", "branchName": "feature/refactor-config", "parentShas": ["mc_base_sha_000000000000000000000000000000"], "treeUrl": "https://api.github.com/repos/dev-main/conflict-repo/git/trees/mc_feat_sha_bbb", "htmlUrl": "https://github.com/dev-main/conflict-repo/commit/mc_feat_sha_bbb", "verified": false, "createdAt": "2024-12-10T15:00:00Z", "updatedAt": "2024-12-10T15:00:00Z" }
|
|
23
23
|
],
|
|
24
24
|
"labels": [
|
|
25
|
-
{ "id": 1, "repoId": 1, "nodeId": "LA_kwDOBmcl01", "name": "bug", "description": "Something isn't working", "color": "d73a4a", "isDefault": true, "createdAt": "2024-12-01T10:00:00Z", "updatedAt": "2024-12-01T10:00:00Z" },
|
|
26
25
|
{ "id": 2, "repoId": 1, "nodeId": "LA_kwDOBmcl02", "name": "conflict", "description": "Has merge conflicts", "color": "e11d48", "isDefault": false, "createdAt": "2024-12-01T10:00:00Z", "updatedAt": "2024-12-01T10:00:00Z" }
|
|
27
26
|
],
|
|
28
27
|
"issues": [
|
|
@@ -24,10 +24,7 @@
|
|
|
24
24
|
{ "id": 1, "repoId": 1, "sha": "perm_main_sha_aaaaaaaaaaaaaaaaaaaaaaaaaaaa", "nodeId": "C_kwDOBpc001", "message": "feat: add authentication middleware", "authorLogin": "repo-owner", "authorName": "Repository Owner", "authorEmail": "owner@example.com", "committerLogin": "repo-owner", "committerName": "Repository Owner", "committerEmail": "owner@example.com", "branchName": "main", "parentShas": [], "treeUrl": "https://api.github.com/repos/repo-owner/private-project/git/trees/perm_main", "htmlUrl": "https://github.com/repo-owner/private-project/commit/perm_main", "verified": false, "createdAt": "2024-12-08T10:00:00Z", "updatedAt": "2024-12-08T10:00:00Z" },
|
|
25
25
|
{ "id": 2, "repoId": 2, "sha": "perm_arch_sha_cccccccccccccccccccccccccccc", "nodeId": "C_kwDOBpc002", "message": "Final commit before archive", "authorLogin": "repo-owner", "authorName": "Repository Owner", "authorEmail": "owner@example.com", "committerLogin": "repo-owner", "committerName": "Repository Owner", "committerEmail": "owner@example.com", "branchName": "main", "parentShas": [], "treeUrl": "https://api.github.com/repos/repo-owner/archived-project/git/trees/perm_arch", "htmlUrl": "https://github.com/repo-owner/archived-project/commit/perm_arch", "verified": false, "createdAt": "2023-06-15T10:00:00Z", "updatedAt": "2023-06-15T10:00:00Z" }
|
|
26
26
|
],
|
|
27
|
-
"labels": [
|
|
28
|
-
{ "id": 1, "repoId": 1, "nodeId": "LA_kwDOBpl001", "name": "bug", "description": "Something isn't working", "color": "d73a4a", "isDefault": true, "createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z" },
|
|
29
|
-
{ "id": 2, "repoId": 1, "nodeId": "LA_kwDOBpl002", "name": "enhancement", "description": "New feature or request", "color": "a2eeef", "isDefault": true, "createdAt": "2024-01-01T10:00:00Z", "updatedAt": "2024-01-01T10:00:00Z" }
|
|
30
|
-
],
|
|
27
|
+
"labels": [],
|
|
31
28
|
"issues": [
|
|
32
29
|
{ "id": 1, "repoId": 1, "nodeId": "I_kwDOBpi001", "number": 1, "title": "Add logging to auth middleware", "body": "We need structured logging for the authentication middleware for debugging production issues.", "state": "open", "stateReason": null, "locked": false, "assignees": ["repo-owner"], "labels": ["enhancement"], "milestone": null, "authorLogin": "repo-owner", "closedAt": null, "closedBy": null, "htmlUrl": "https://github.com/repo-owner/private-project/issues/1", "isPullRequest": false, "reactions": {"totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "createdAt": "2024-12-01T10:00:00Z", "updatedAt": "2024-12-01T10:00:00Z" },
|
|
33
30
|
{ "id": 2, "repoId": 1, "nodeId": "I_kwDOBpi002", "number": 2, "title": "Token validation fails for service accounts", "body": "Service account tokens are not being validated correctly. Returns 401 even with valid tokens.", "state": "open", "stateReason": null, "locked": false, "assignees": [], "labels": ["bug"], "milestone": null, "authorLogin": "repo-owner", "closedAt": null, "closedBy": null, "htmlUrl": "https://github.com/repo-owner/private-project/issues/2", "isPullRequest": false, "reactions": {"totalCount": 1, "plusOne": 1, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "createdAt": "2024-12-05T14:00:00Z", "updatedAt": "2024-12-05T14:00:00Z" }
|
|
@@ -15,9 +15,7 @@
|
|
|
15
15
|
"commits": [
|
|
16
16
|
{ "id": 1, "repoId": 1, "sha": "rate_main_sha_aaaaaaaaaaaaaaaaaaaaaaaaaaaaa", "nodeId": "C_kwDOBrc001", "message": "Initial commit", "authorLogin": "rate-limited-user", "authorName": "Rate Limited User", "authorEmail": "ratelimit@example.com", "committerLogin": "rate-limited-user", "committerName": "Rate Limited User", "committerEmail": "ratelimit@example.com", "branchName": "main", "parentShas": [], "treeUrl": "https://api.github.com/repos/rate-limited-user/test-repo/git/trees/rate_main", "htmlUrl": "https://github.com/rate-limited-user/test-repo/commit/rate_main", "verified": false, "createdAt": "2024-06-01T10:00:00Z", "updatedAt": "2024-06-01T10:00:00Z" }
|
|
17
17
|
],
|
|
18
|
-
"labels": [
|
|
19
|
-
{ "id": 1, "repoId": 1, "nodeId": "LA_kwDOBrl001", "name": "bug", "description": "Something isn't working", "color": "d73a4a", "isDefault": true, "createdAt": "2024-06-01T10:00:00Z", "updatedAt": "2024-06-01T10:00:00Z" }
|
|
20
|
-
],
|
|
18
|
+
"labels": [],
|
|
21
19
|
"issues": [
|
|
22
20
|
{ "id": 1, "repoId": 1, "nodeId": "I_kwDOBri001", "number": 1, "title": "Test issue", "body": "This is a test issue in a rate-limited state.", "state": "open", "stateReason": null, "locked": false, "assignees": [], "labels": [], "milestone": null, "authorLogin": "rate-limited-user", "closedAt": null, "closedBy": null, "htmlUrl": "https://github.com/rate-limited-user/test-repo/issues/1", "isPullRequest": false, "reactions": {"totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0}, "createdAt": "2024-12-10T10:00:00Z", "updatedAt": "2024-12-10T10:00:00Z" }
|
|
23
21
|
],
|
|
@@ -359,21 +359,6 @@
|
|
|
359
359
|
}
|
|
360
360
|
],
|
|
361
361
|
"labels": [
|
|
362
|
-
{
|
|
363
|
-
"id": 1, "repoId": 1, "nodeId": "LA_kwDOBlab01", "name": "bug", "description": "Something isn't working", "color": "d73a4a", "isDefault": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z"
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"id": 2, "repoId": 1, "nodeId": "LA_kwDOBlab02", "name": "enhancement", "description": "New feature or request", "color": "a2eeef", "isDefault": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"id": 3, "repoId": 1, "nodeId": "LA_kwDOBlab03", "name": "documentation", "description": "Improvements or additions to documentation", "color": "0075ca", "isDefault": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z"
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
"id": 4, "repoId": 1, "nodeId": "LA_kwDOBlab04", "name": "good first issue", "description": "Good for newcomers", "color": "7057ff", "isDefault": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"id": 5, "repoId": 1, "nodeId": "LA_kwDOBlab05", "name": "help wanted", "description": "Extra attention is needed", "color": "008672", "isDefault": true, "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z"
|
|
376
|
-
},
|
|
377
362
|
{
|
|
378
363
|
"id": 6, "repoId": 1, "nodeId": "LA_kwDOBlab06", "name": "priority: high", "description": "High priority issue", "color": "e11d48", "isDefault": false, "createdAt": "2024-02-10T10:00:00Z", "updatedAt": "2024-02-10T10:00:00Z"
|
|
379
364
|
}
|
|
@@ -803,5 +788,46 @@
|
|
|
803
788
|
"createdAt": "2024-12-10T16:30:00Z",
|
|
804
789
|
"updatedAt": "2024-12-10T16:35:00Z"
|
|
805
790
|
}
|
|
806
|
-
]
|
|
791
|
+
],
|
|
792
|
+
"deployments": [
|
|
793
|
+
{ "id": 1, "deploymentId": 101, "repoId": 1, "environment": "production", "sha": "abc1234567890def1234567890abcdef12345678", "ref": "main", "task": "deploy", "description": "Deploy latest main to production", "creatorLogin": "octocat", "transientEnvironment": false, "productionEnvironment": true, "nodeId": "DE_kwDOBsdp01", "createdAt": "2024-12-10T17:00:00Z", "updatedAt": "2024-12-10T17:15:00Z" }
|
|
794
|
+
],
|
|
795
|
+
"deploymentStatuses": [
|
|
796
|
+
{ "id": 1, "statusId": 201, "deploymentId": 101, "repoId": 1, "state": "success", "description": "Deployment finished successfully", "environmentUrl": "https://webapp.example.com", "logUrl": "https://github.com/octocat/webapp/actions/runs/1/logs", "creatorLogin": "octocat", "nodeId": "DS_kwDOBsds01", "createdAt": "2024-12-10T17:15:00Z", "updatedAt": "2024-12-10T17:15:00Z" }
|
|
797
|
+
],
|
|
798
|
+
"environments": [
|
|
799
|
+
{ "id": 1, "environmentId": 301, "repoId": 1, "name": "production", "protectionRules": [{ "type": "required_reviewers", "reviewers": [{ "type": "User", "id": 1 }] }], "deploymentBranchPolicy": { "protectedBranches": true, "customBranchPolicies": false }, "nodeId": "EN_kwDOBsen01", "createdAt": "2024-01-20T10:00:00Z", "updatedAt": "2024-06-01T10:00:00Z" },
|
|
800
|
+
{ "id": 2, "environmentId": 302, "repoId": 1, "name": "staging", "protectionRules": [], "deploymentBranchPolicy": null, "nodeId": "EN_kwDOBsen02", "createdAt": "2024-01-20T10:00:00Z", "updatedAt": "2024-06-01T10:00:00Z" }
|
|
801
|
+
],
|
|
802
|
+
"checkRuns": [
|
|
803
|
+
{ "id": 1, "checkRunId": 401, "repoId": 1, "sha": "abc1234567890def1234567890abcdef12345678", "name": "test", "status": "completed", "conclusion": "success", "output": { "title": "Unit Tests", "summary": "54 tests passed, 0 failed", "text": null }, "externalId": null, "startedAt": "2024-12-10T16:31:00Z", "completedAt": "2024-12-10T16:34:00Z", "nodeId": "CR_kwDOBscr01", "createdAt": "2024-12-10T16:31:00Z", "updatedAt": "2024-12-10T16:34:00Z" },
|
|
804
|
+
{ "id": 2, "checkRunId": 402, "repoId": 1, "sha": "abc1234567890def1234567890abcdef12345678", "name": "build", "status": "completed", "conclusion": "success", "output": { "title": "Production Build", "summary": "Build completed in 1m 12s", "text": null }, "externalId": null, "startedAt": "2024-12-10T16:31:00Z", "completedAt": "2024-12-10T16:32:30Z", "nodeId": "CR_kwDOBscr02", "createdAt": "2024-12-10T16:31:00Z", "updatedAt": "2024-12-10T16:32:30Z" }
|
|
805
|
+
],
|
|
806
|
+
"collaborators": [
|
|
807
|
+
{ "id": 1, "repoId": 1, "userLogin": "octocat", "permission": "admin", "createdAt": "2024-01-15T10:00:00Z", "updatedAt": "2024-01-15T10:00:00Z" },
|
|
808
|
+
{ "id": 2, "repoId": 1, "userLogin": "mona", "permission": "push", "createdAt": "2024-03-01T10:00:00Z", "updatedAt": "2024-03-01T10:00:00Z" }
|
|
809
|
+
],
|
|
810
|
+
"milestones": [
|
|
811
|
+
{ "id": 1, "milestoneId": 501, "repoId": 1, "number": 1, "title": "v1.0", "description": "Initial stable release with core features", "state": "open", "dueOn": "2025-02-01T23:59:59Z", "creatorLogin": "octocat", "closedAt": null, "nodeId": "MI_kwDOBsmi01", "createdAt": "2024-10-01T10:00:00Z", "updatedAt": "2024-12-10T16:30:00Z" }
|
|
812
|
+
],
|
|
813
|
+
"releases": [
|
|
814
|
+
{ "id": 1, "repoId": 1, "nodeId": "RE_kwDOBsre01", "tagName": "v0.9.0", "name": "WebApp v0.9.0 Beta", "body": "## Beta Release\n\n- User authentication module\n- Dashboard page\n- Settings page\n- Basic responsive layout", "draft": false, "prerelease": true, "authorLogin": "octocat", "htmlUrl": "https://github.com/octocat/webapp/releases/tag/v0.9.0", "tarballUrl": "https://api.github.com/repos/octocat/webapp/tarball/v0.9.0", "zipballUrl": "https://api.github.com/repos/octocat/webapp/zipball/v0.9.0", "targetCommitish": "main", "createdAt": "2024-11-01T10:00:00Z", "updatedAt": "2024-11-01T10:00:00Z" }
|
|
815
|
+
],
|
|
816
|
+
"tags": [
|
|
817
|
+
{ "id": 1, "repoId": 1, "name": "v0.9.0", "commitSha": "abc1234567890def1234567890abcdef12345678", "zipballUrl": "https://api.github.com/repos/octocat/webapp/zipball/v0.9.0", "tarballUrl": "https://api.github.com/repos/octocat/webapp/tarball/v0.9.0", "nodeId": "TG_kwDOBstg01", "createdAt": "2024-11-01T10:00:00Z", "updatedAt": "2024-11-01T10:00:00Z" }
|
|
818
|
+
],
|
|
819
|
+
"commitStatuses": [],
|
|
820
|
+
"webhooks": [],
|
|
821
|
+
"discussions": [],
|
|
822
|
+
"discussionComments": [],
|
|
823
|
+
"discussionCategories": [],
|
|
824
|
+
"notifications": [],
|
|
825
|
+
"starredRepos": [],
|
|
826
|
+
"organizations": [],
|
|
827
|
+
"teams": [],
|
|
828
|
+
"teamMembers": [],
|
|
829
|
+
"projectsV2": [],
|
|
830
|
+
"gists": [],
|
|
831
|
+
"gitTrees": [],
|
|
832
|
+
"gitCommits": []
|
|
807
833
|
}
|
|
@@ -92,16 +92,6 @@
|
|
|
92
92
|
}
|
|
93
93
|
],
|
|
94
94
|
"labels": [
|
|
95
|
-
{
|
|
96
|
-
"id": 1, "repoId": 1, "nodeId": "LA_kwDOBlab01", "name": "bug",
|
|
97
|
-
"description": "Something isn't working", "color": "d73a4a",
|
|
98
|
-
"isDefault": true, "createdAt": "2023-06-15T10:00:00Z", "updatedAt": "2023-06-15T10:00:00Z"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"id": 2, "repoId": 1, "nodeId": "LA_kwDOBlab02", "name": "enhancement",
|
|
102
|
-
"description": "New feature or request", "color": "a2eeef",
|
|
103
|
-
"isDefault": true, "createdAt": "2023-06-15T10:00:00Z", "updatedAt": "2023-06-15T10:00:00Z"
|
|
104
|
-
},
|
|
105
95
|
{
|
|
106
96
|
"id": 3, "repoId": 1, "nodeId": "LA_kwDOBlab03", "name": "keep-open",
|
|
107
97
|
"description": "Do not auto-close — intentionally kept open", "color": "0e8a16",
|
|
@@ -372,4 +362,4 @@
|
|
|
372
362
|
],
|
|
373
363
|
"workflows": [],
|
|
374
364
|
"workflowRuns": []
|
|
375
|
-
}
|
|
365
|
+
}
|
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
{
|
|
2
|
+
"users": [
|
|
3
|
+
{
|
|
4
|
+
"id": 1,
|
|
5
|
+
"login": "temporal-tester",
|
|
6
|
+
"nodeId": "U_kgDOBtemp1",
|
|
7
|
+
"avatarUrl": "https://avatars.githubusercontent.com/u/1?v=4",
|
|
8
|
+
"type": "User",
|
|
9
|
+
"name": "Temporal Tester",
|
|
10
|
+
"email": "temporal@example.com",
|
|
11
|
+
"bio": "Testing temporal transitions",
|
|
12
|
+
"company": null,
|
|
13
|
+
"location": null,
|
|
14
|
+
"htmlUrl": "https://github.com/temporal-tester",
|
|
15
|
+
"publicRepos": 2,
|
|
16
|
+
"followers": 0,
|
|
17
|
+
"following": 0,
|
|
18
|
+
"siteAdmin": false,
|
|
19
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
20
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": 2,
|
|
24
|
+
"login": "bot-automations",
|
|
25
|
+
"nodeId": "U_kgDOBbot02",
|
|
26
|
+
"avatarUrl": "https://avatars.githubusercontent.com/u/2?v=4",
|
|
27
|
+
"type": "Bot",
|
|
28
|
+
"name": "Bot Automations",
|
|
29
|
+
"email": null,
|
|
30
|
+
"bio": "Automation bot",
|
|
31
|
+
"company": null,
|
|
32
|
+
"location": null,
|
|
33
|
+
"htmlUrl": "https://github.com/bot-automations",
|
|
34
|
+
"publicRepos": 0,
|
|
35
|
+
"followers": 0,
|
|
36
|
+
"following": 0,
|
|
37
|
+
"siteAdmin": false,
|
|
38
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
39
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"repos": [
|
|
43
|
+
{
|
|
44
|
+
"id": 1,
|
|
45
|
+
"nodeId": "R_kgDOBtemp01",
|
|
46
|
+
"name": "temporal-test-repo",
|
|
47
|
+
"fullName": "temporal-tester/temporal-test-repo",
|
|
48
|
+
"owner": "temporal-tester",
|
|
49
|
+
"private": false,
|
|
50
|
+
"description": "Repo for temporal transition testing",
|
|
51
|
+
"fork": false,
|
|
52
|
+
"sourceRepoId": null,
|
|
53
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo",
|
|
54
|
+
"cloneUrl": "https://github.com/temporal-tester/temporal-test-repo.git",
|
|
55
|
+
"sshUrl": "git@github.com:temporal-tester/temporal-test-repo.git",
|
|
56
|
+
"language": "TypeScript",
|
|
57
|
+
"forksCount": 0,
|
|
58
|
+
"stargazersCount": 0,
|
|
59
|
+
"watchersCount": 0,
|
|
60
|
+
"openIssuesCount": 3,
|
|
61
|
+
"defaultBranch": "main",
|
|
62
|
+
"topics": ["temporal", "testing"],
|
|
63
|
+
"hasIssues": true,
|
|
64
|
+
"hasProjects": false,
|
|
65
|
+
"hasWiki": false,
|
|
66
|
+
"hasPages": false,
|
|
67
|
+
"archived": false,
|
|
68
|
+
"disabled": false,
|
|
69
|
+
"visibility": "public",
|
|
70
|
+
"pushedAt": "2025-12-01T10:00:00Z",
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"allowMergeCommit": true,
|
|
73
|
+
"allowSquashMerge": true,
|
|
74
|
+
"allowRebaseMerge": true,
|
|
75
|
+
"allowAutoMerge": true,
|
|
76
|
+
"deleteBranchOnMerge": true,
|
|
77
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
78
|
+
"updatedAt": "2025-12-01T10:00:00Z"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"branches": [
|
|
82
|
+
{
|
|
83
|
+
"id": 1,
|
|
84
|
+
"repoId": 1,
|
|
85
|
+
"name": "main",
|
|
86
|
+
"commitSha": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
87
|
+
"protected": true,
|
|
88
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
89
|
+
"updatedAt": "2025-12-01T10:00:00Z"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"id": 2,
|
|
93
|
+
"repoId": 1,
|
|
94
|
+
"name": "feature/auto-merge-ready",
|
|
95
|
+
"commitSha": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
96
|
+
"protected": false,
|
|
97
|
+
"createdAt": "2025-12-10T08:00:00Z",
|
|
98
|
+
"updatedAt": "2025-12-10T08:00:00Z"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": 3,
|
|
102
|
+
"repoId": 1,
|
|
103
|
+
"name": "fix/stale-branch",
|
|
104
|
+
"commitSha": "cccccccccccccccccccccccccccccccccccc0003",
|
|
105
|
+
"protected": false,
|
|
106
|
+
"createdAt": "2025-10-01T00:00:00Z",
|
|
107
|
+
"updatedAt": "2025-10-01T00:00:00Z"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"commits": [
|
|
111
|
+
{
|
|
112
|
+
"id": 1,
|
|
113
|
+
"repoId": 1,
|
|
114
|
+
"sha": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
115
|
+
"nodeId": "C_kwDOBtemp01",
|
|
116
|
+
"message": "Initial commit",
|
|
117
|
+
"authorLogin": "temporal-tester",
|
|
118
|
+
"authorName": "Temporal Tester",
|
|
119
|
+
"authorEmail": "temporal@example.com",
|
|
120
|
+
"committerLogin": "temporal-tester",
|
|
121
|
+
"committerName": "Temporal Tester",
|
|
122
|
+
"committerEmail": "temporal@example.com",
|
|
123
|
+
"branchName": "main",
|
|
124
|
+
"parentShas": [],
|
|
125
|
+
"treeUrl": "https://api.github.com/repos/temporal-tester/temporal-test-repo/git/trees/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
126
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/commit/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
127
|
+
"verified": false,
|
|
128
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
129
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": 2,
|
|
133
|
+
"repoId": 1,
|
|
134
|
+
"sha": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
135
|
+
"nodeId": "C_kwDOBtemp02",
|
|
136
|
+
"message": "feat: auto-merge candidate",
|
|
137
|
+
"authorLogin": "temporal-tester",
|
|
138
|
+
"authorName": "Temporal Tester",
|
|
139
|
+
"authorEmail": "temporal@example.com",
|
|
140
|
+
"committerLogin": "temporal-tester",
|
|
141
|
+
"committerName": "Temporal Tester",
|
|
142
|
+
"committerEmail": "temporal@example.com",
|
|
143
|
+
"branchName": "feature/auto-merge-ready",
|
|
144
|
+
"parentShas": ["aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001"],
|
|
145
|
+
"treeUrl": "https://api.github.com/repos/temporal-tester/temporal-test-repo/git/trees/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
146
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/commit/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
147
|
+
"verified": false,
|
|
148
|
+
"createdAt": "2025-12-10T08:00:00Z",
|
|
149
|
+
"updatedAt": "2025-12-10T08:00:00Z"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"labels": [
|
|
153
|
+
{
|
|
154
|
+
"id": 1,
|
|
155
|
+
"repoId": 1,
|
|
156
|
+
"nodeId": "LA_kwDOBlab01",
|
|
157
|
+
"name": "stale",
|
|
158
|
+
"description": "This issue has had no activity for a long time",
|
|
159
|
+
"color": "cccccc",
|
|
160
|
+
"isDefault": false,
|
|
161
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
162
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": 2,
|
|
166
|
+
"repoId": 1,
|
|
167
|
+
"nodeId": "LA_kwDOBlab02",
|
|
168
|
+
"name": "bug",
|
|
169
|
+
"description": "Something is not working",
|
|
170
|
+
"color": "d73a4a",
|
|
171
|
+
"isDefault": true,
|
|
172
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
173
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
"issues": [
|
|
177
|
+
{
|
|
178
|
+
"id": 1,
|
|
179
|
+
"repoId": 1,
|
|
180
|
+
"nodeId": "I_kwDOBtemp01",
|
|
181
|
+
"number": 1,
|
|
182
|
+
"title": "Stale issue that should auto-close",
|
|
183
|
+
"body": "This issue has had no activity for over 60 days and should be auto-closed by the stale-close transition rule.",
|
|
184
|
+
"state": "open",
|
|
185
|
+
"stateReason": null,
|
|
186
|
+
"locked": false,
|
|
187
|
+
"assignees": [],
|
|
188
|
+
"labels": ["stale"],
|
|
189
|
+
"milestone": null,
|
|
190
|
+
"authorLogin": "temporal-tester",
|
|
191
|
+
"closedAt": null,
|
|
192
|
+
"closedBy": null,
|
|
193
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/issues/1",
|
|
194
|
+
"isPullRequest": false,
|
|
195
|
+
"reactions": { "totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 },
|
|
196
|
+
"createdAt": "2025-09-01T00:00:00Z",
|
|
197
|
+
"updatedAt": "2025-09-01T00:00:00Z"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": 2,
|
|
201
|
+
"repoId": 1,
|
|
202
|
+
"nodeId": "I_kwDOBtemp02",
|
|
203
|
+
"number": 2,
|
|
204
|
+
"title": "Another stale issue with no recent activity",
|
|
205
|
+
"body": "Created and never touched. Updated 62 days ago so it qualifies for stale auto-close.",
|
|
206
|
+
"state": "open",
|
|
207
|
+
"stateReason": null,
|
|
208
|
+
"locked": false,
|
|
209
|
+
"assignees": [],
|
|
210
|
+
"labels": [],
|
|
211
|
+
"milestone": null,
|
|
212
|
+
"authorLogin": "temporal-tester",
|
|
213
|
+
"closedAt": null,
|
|
214
|
+
"closedBy": null,
|
|
215
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/issues/2",
|
|
216
|
+
"isPullRequest": false,
|
|
217
|
+
"reactions": { "totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 },
|
|
218
|
+
"createdAt": "2025-08-15T00:00:00Z",
|
|
219
|
+
"updatedAt": "2025-08-15T00:00:00Z"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": 3,
|
|
223
|
+
"repoId": 1,
|
|
224
|
+
"nodeId": "I_kwDOBtemp03",
|
|
225
|
+
"number": 3,
|
|
226
|
+
"title": "Recent issue that should NOT be stale-closed",
|
|
227
|
+
"body": "This issue was updated recently (within 60 days) so it should stay open.",
|
|
228
|
+
"state": "open",
|
|
229
|
+
"stateReason": null,
|
|
230
|
+
"locked": false,
|
|
231
|
+
"assignees": ["temporal-tester"],
|
|
232
|
+
"labels": ["bug"],
|
|
233
|
+
"milestone": null,
|
|
234
|
+
"authorLogin": "temporal-tester",
|
|
235
|
+
"closedAt": null,
|
|
236
|
+
"closedBy": null,
|
|
237
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/issues/3",
|
|
238
|
+
"isPullRequest": false,
|
|
239
|
+
"reactions": { "totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 },
|
|
240
|
+
"createdAt": "2026-01-01T00:00:00Z",
|
|
241
|
+
"updatedAt": "2026-01-15T00:00:00Z"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"id": 4,
|
|
245
|
+
"repoId": 1,
|
|
246
|
+
"nodeId": "I_kwDOBtemp04",
|
|
247
|
+
"number": 4,
|
|
248
|
+
"title": "Auto-merge ready pull request",
|
|
249
|
+
"body": "This PR has auto-merge enabled and is mergeable. It should be auto-merged on the next clock tick.",
|
|
250
|
+
"state": "open",
|
|
251
|
+
"stateReason": null,
|
|
252
|
+
"locked": false,
|
|
253
|
+
"assignees": ["temporal-tester"],
|
|
254
|
+
"labels": [],
|
|
255
|
+
"milestone": null,
|
|
256
|
+
"authorLogin": "temporal-tester",
|
|
257
|
+
"closedAt": null,
|
|
258
|
+
"closedBy": null,
|
|
259
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/pull/4",
|
|
260
|
+
"isPullRequest": true,
|
|
261
|
+
"reactions": { "totalCount": 0, "plusOne": 0, "minusOne": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 },
|
|
262
|
+
"createdAt": "2026-01-20T10:00:00Z",
|
|
263
|
+
"updatedAt": "2026-01-20T10:00:00Z"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"pullRequests": [
|
|
267
|
+
{
|
|
268
|
+
"id": 1,
|
|
269
|
+
"repoId": 1,
|
|
270
|
+
"nodeId": "PR_kwDOBtemp01",
|
|
271
|
+
"number": 4,
|
|
272
|
+
"title": "Auto-merge ready pull request",
|
|
273
|
+
"body": "This PR is approved, checks have passed, and auto-merge is enabled. Should auto-merge on next clock advance.",
|
|
274
|
+
"state": "open",
|
|
275
|
+
"locked": false,
|
|
276
|
+
"authorLogin": "temporal-tester",
|
|
277
|
+
"assignees": ["temporal-tester"],
|
|
278
|
+
"labels": [],
|
|
279
|
+
"milestone": null,
|
|
280
|
+
"headRef": "feature/auto-merge-ready",
|
|
281
|
+
"headSha": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
282
|
+
"baseRef": "main",
|
|
283
|
+
"baseSha": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
284
|
+
"merged": false,
|
|
285
|
+
"mergeable": true,
|
|
286
|
+
"mergedAt": null,
|
|
287
|
+
"mergedBy": null,
|
|
288
|
+
"mergeCommitSha": null,
|
|
289
|
+
"draft": false,
|
|
290
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/pull/4",
|
|
291
|
+
"diffUrl": "https://github.com/temporal-tester/temporal-test-repo/pull/4.diff",
|
|
292
|
+
"patchUrl": "https://github.com/temporal-tester/temporal-test-repo/pull/4.patch",
|
|
293
|
+
"additions": 42,
|
|
294
|
+
"deletions": 5,
|
|
295
|
+
"changedFiles": 2,
|
|
296
|
+
"commits": 1,
|
|
297
|
+
"comments": 0,
|
|
298
|
+
"reviewComments": 0,
|
|
299
|
+
"maintainerCanModify": true,
|
|
300
|
+
"closedAt": null,
|
|
301
|
+
"requestedReviewers": [],
|
|
302
|
+
"autoMerge": true,
|
|
303
|
+
"createdAt": "2026-01-20T10:00:00Z",
|
|
304
|
+
"updatedAt": "2026-01-20T10:00:00Z"
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
"workflows": [
|
|
308
|
+
{
|
|
309
|
+
"id": 1,
|
|
310
|
+
"repoId": 1,
|
|
311
|
+
"nodeId": "W_kwDOBtemp01",
|
|
312
|
+
"name": "CI",
|
|
313
|
+
"path": ".github/workflows/ci.yml",
|
|
314
|
+
"state": "active",
|
|
315
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/actions/workflows/ci.yml",
|
|
316
|
+
"badgeUrl": "https://github.com/temporal-tester/temporal-test-repo/workflows/CI/badge.svg",
|
|
317
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
318
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"id": 2,
|
|
322
|
+
"repoId": 1,
|
|
323
|
+
"nodeId": "W_kwDOBtemp02",
|
|
324
|
+
"name": "Deploy",
|
|
325
|
+
"path": ".github/workflows/deploy.yml",
|
|
326
|
+
"state": "active",
|
|
327
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/actions/workflows/deploy.yml",
|
|
328
|
+
"badgeUrl": "https://github.com/temporal-tester/temporal-test-repo/workflows/Deploy/badge.svg",
|
|
329
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
330
|
+
"updatedAt": "2025-10-01T00:00:00Z"
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"workflowRuns": [
|
|
334
|
+
{
|
|
335
|
+
"id": 1,
|
|
336
|
+
"repoId": 1,
|
|
337
|
+
"workflowId": 1,
|
|
338
|
+
"nodeId": "WR_kwDOBtemp01",
|
|
339
|
+
"name": "CI",
|
|
340
|
+
"headBranch": "feature/auto-merge-ready",
|
|
341
|
+
"headSha": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb0002",
|
|
342
|
+
"runNumber": 1,
|
|
343
|
+
"event": "push",
|
|
344
|
+
"status": "queued",
|
|
345
|
+
"conclusion": null,
|
|
346
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/actions/runs/1",
|
|
347
|
+
"triggeringActorLogin": "temporal-tester",
|
|
348
|
+
"runAttempt": 1,
|
|
349
|
+
"runStartedAt": "2026-03-16T09:00:00Z",
|
|
350
|
+
"createdAt": "2026-03-16T09:00:00Z",
|
|
351
|
+
"updatedAt": "2026-03-16T09:00:00Z"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"id": 2,
|
|
355
|
+
"repoId": 1,
|
|
356
|
+
"workflowId": 1,
|
|
357
|
+
"nodeId": "WR_kwDOBtemp02",
|
|
358
|
+
"name": "CI",
|
|
359
|
+
"headBranch": "main",
|
|
360
|
+
"headSha": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa0001",
|
|
361
|
+
"runNumber": 2,
|
|
362
|
+
"event": "push",
|
|
363
|
+
"status": "in_progress",
|
|
364
|
+
"conclusion": null,
|
|
365
|
+
"htmlUrl": "https://github.com/temporal-tester/temporal-test-repo/actions/runs/2",
|
|
366
|
+
"triggeringActorLogin": "bot-automations",
|
|
367
|
+
"runAttempt": 1,
|
|
368
|
+
"runStartedAt": "2026-03-16T08:55:00Z",
|
|
369
|
+
"createdAt": "2026-03-16T08:55:00Z",
|
|
370
|
+
"updatedAt": "2026-03-16T08:55:30Z"
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"comments": [],
|
|
374
|
+
"files": [
|
|
375
|
+
{
|
|
376
|
+
"id": 1,
|
|
377
|
+
"repoId": 1,
|
|
378
|
+
"branchName": "main",
|
|
379
|
+
"path": "README.md",
|
|
380
|
+
"content": "# Temporal Test Repo\n\nThis repo is seeded with entities at lifecycle boundaries for transition rule testing.\n",
|
|
381
|
+
"encoding": "utf-8",
|
|
382
|
+
"sha": "dddddddddddddddddddddddddddddddddddd0004",
|
|
383
|
+
"size": 120,
|
|
384
|
+
"type": "file",
|
|
385
|
+
"createdAt": "2024-01-01T00:00:00Z",
|
|
386
|
+
"updatedAt": "2024-01-01T00:00:00Z"
|
|
387
|
+
}
|
|
388
|
+
]
|
|
389
|
+
}
|
|
@@ -92,15 +92,6 @@
|
|
|
92
92
|
}
|
|
93
93
|
],
|
|
94
94
|
"labels": [
|
|
95
|
-
{
|
|
96
|
-
"id": 1, "repoId": 1, "nodeId": "LA_kwDOBlab01", "name": "bug", "description": "Something isn't working", "color": "d73a4a", "isDefault": true, "createdAt": "2023-06-01T09:00:00Z", "updatedAt": "2023-06-01T09:00:00Z"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"id": 2, "repoId": 1, "nodeId": "LA_kwDOBlab02", "name": "enhancement", "description": "New feature or request", "color": "a2eeef", "isDefault": true, "createdAt": "2023-06-01T09:00:00Z", "updatedAt": "2023-06-01T09:00:00Z"
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"id": 3, "repoId": 1, "nodeId": "LA_kwDOBlab03", "name": "question", "description": "Further information is requested", "color": "d876e3", "isDefault": true, "createdAt": "2023-06-01T09:00:00Z", "updatedAt": "2023-06-01T09:00:00Z"
|
|
103
|
-
},
|
|
104
95
|
{
|
|
105
96
|
"id": 4, "repoId": 1, "nodeId": "LA_kwDOBlab04", "name": "priority:high", "description": "High priority", "color": "e11d48", "isDefault": false, "createdAt": "2023-06-01T09:00:00Z", "updatedAt": "2023-06-01T09:00:00Z"
|
|
106
97
|
},
|
|
@@ -448,4 +439,4 @@
|
|
|
448
439
|
"files": [],
|
|
449
440
|
"workflows": [],
|
|
450
441
|
"workflowRuns": []
|
|
451
|
-
}
|
|
442
|
+
}
|
|
@@ -4,37 +4,35 @@
|
|
|
4
4
|
"realServer": "sooperset/mcp-atlassian",
|
|
5
5
|
"realServerVersion": "0.13.1",
|
|
6
6
|
"toolCount": {
|
|
7
|
-
"twin":
|
|
7
|
+
"twin": 39,
|
|
8
8
|
"realServer": 39,
|
|
9
|
-
"implemented":
|
|
9
|
+
"implemented": 39,
|
|
10
10
|
"excluded": [
|
|
11
11
|
"jira_get_issue_proforma_forms",
|
|
12
12
|
"jira_get_proforma_form_details",
|
|
13
13
|
"jira_update_proforma_form_answers",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"jira_get_issue_development_info",
|
|
17
|
-
"jira_get_issues_development_info"
|
|
14
|
+
"jira_update_issue",
|
|
15
|
+
"jira_remove_issue_link"
|
|
18
16
|
]
|
|
19
17
|
},
|
|
20
18
|
"fixtureCount": {
|
|
21
|
-
"realServer":
|
|
22
|
-
"replaySteps":
|
|
23
|
-
"total":
|
|
19
|
+
"realServer": 39,
|
|
20
|
+
"replaySteps": 295,
|
|
21
|
+
"total": 314
|
|
24
22
|
},
|
|
25
23
|
"fidelityStatus": {
|
|
26
|
-
"schema": "
|
|
24
|
+
"schema": "ok",
|
|
27
25
|
"responses": "ok",
|
|
28
|
-
"replayPass": "
|
|
26
|
+
"replayPass": "295/295"
|
|
29
27
|
},
|
|
30
28
|
"seeds": ["empty", "small-project", "enterprise", "sprint-active", "large-backlog", "permissions-denied", "rate-limited", "conflict-states"],
|
|
31
29
|
"jqlSupported": ["=", "!=", "~", "IN", "NOT IN", "AND", "OR", "NOT", "IS EMPTY", "IS NOT EMPTY", "ORDER BY"],
|
|
32
30
|
"jqlNotSupported": ["WAS", "CHANGED", ">=", "<=", ">", "<", "date functions", "custom fields"],
|
|
33
31
|
"testCount": 207,
|
|
34
32
|
"knownGaps": [
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
33
|
+
"5 tools are intentionally outside the audited publishable subset: ProForma forms (3) are out of scope, and jira_update_issue plus jira_remove_issue_link remain exposed but unaudited due upstream limitations.",
|
|
34
|
+
"jira_update_issue happy-path parity is blocked by the upstream server raising a backend error when called with its documented required fields payload.",
|
|
35
|
+
"jira_remove_issue_link happy-path parity is blocked because the upstream tool surface exposes no removable link id through create_issue_link output or get_issue reads.",
|
|
38
36
|
"JQL WAS/CHANGED operators — require historical state",
|
|
39
37
|
"JQL date functions (startOfDay, endOfWeek) — low priority",
|
|
40
38
|
"Custom field queries (customfield_XXXXX) — requires dynamic schema extension"
|