@archal/cli 0.7.11 → 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 +51 -4
- package/harnesses/hardened/agent.mjs +36 -8
- package/harnesses/naive/agent.mjs +18 -8
- 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 +186 -4
- package/harnesses/react/tool-selection.mjs +66 -0
- package/harnesses/zero-shot/agent.mjs +28 -1
- 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 +147 -10
- 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 +205 -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/small-project.json +31 -2
- package/twin-assets/jira/seeds/sprint-active.json +1215 -126
- 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 +357 -1
- package/twin-assets/slack/seeds/empty.json +10 -2
- package/twin-assets/slack/seeds/engineering-team.json +269 -1
- 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 -17491
- 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
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
{
|
|
2
|
+
"users": [
|
|
3
|
+
{
|
|
4
|
+
"id": 1,
|
|
5
|
+
"accountId": "5b10a2844c20165700temporal1",
|
|
6
|
+
"accountType": "atlassian",
|
|
7
|
+
"displayName": "Temporal Admin",
|
|
8
|
+
"emailAddress": "admin@temporal-test.example.com",
|
|
9
|
+
"active": true,
|
|
10
|
+
"avatarUrls": {
|
|
11
|
+
"48x48": "https://avatar-management.atlassian.net/default/48",
|
|
12
|
+
"24x24": "https://avatar-management.atlassian.net/default/24",
|
|
13
|
+
"16x16": "https://avatar-management.atlassian.net/default/16",
|
|
14
|
+
"32x32": "https://avatar-management.atlassian.net/default/32"
|
|
15
|
+
},
|
|
16
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10a2844c20165700temporal1",
|
|
17
|
+
"timeZone": "America/New_York",
|
|
18
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
19
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"id": 2,
|
|
23
|
+
"accountId": "5b10ac8d82e05b22cc7dtmp02",
|
|
24
|
+
"accountType": "atlassian",
|
|
25
|
+
"displayName": "Dev User",
|
|
26
|
+
"emailAddress": "dev@temporal-test.example.com",
|
|
27
|
+
"active": true,
|
|
28
|
+
"avatarUrls": {
|
|
29
|
+
"48x48": "https://avatar-management.atlassian.net/default/48",
|
|
30
|
+
"24x24": "https://avatar-management.atlassian.net/default/24",
|
|
31
|
+
"16x16": "https://avatar-management.atlassian.net/default/16",
|
|
32
|
+
"32x32": "https://avatar-management.atlassian.net/default/32"
|
|
33
|
+
},
|
|
34
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/user?accountId=5b10ac8d82e05b22cc7dtmp02",
|
|
35
|
+
"timeZone": "America/Los_Angeles",
|
|
36
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
37
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"projects": [
|
|
41
|
+
{
|
|
42
|
+
"id": 1,
|
|
43
|
+
"key": "TMP",
|
|
44
|
+
"name": "Temporal Test Project",
|
|
45
|
+
"description": "Project for testing sprint lifecycle transitions",
|
|
46
|
+
"projectTypeKey": "software",
|
|
47
|
+
"leadAccountId": "5b10a2844c20165700temporal1",
|
|
48
|
+
"avatarUrls": {
|
|
49
|
+
"48x48": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=48",
|
|
50
|
+
"24x24": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=24",
|
|
51
|
+
"16x16": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=16",
|
|
52
|
+
"32x32": "https://your-domain.atlassian.net/secure/projectavatar?pid=10000&avatarId=10400&size=32"
|
|
53
|
+
},
|
|
54
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/project/10000",
|
|
55
|
+
"simplified": false,
|
|
56
|
+
"style": "classic",
|
|
57
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
58
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
"issueTypes": [
|
|
62
|
+
{
|
|
63
|
+
"id": 1,
|
|
64
|
+
"name": "Story",
|
|
65
|
+
"description": "A user story.",
|
|
66
|
+
"subtask": false,
|
|
67
|
+
"projectId": 1,
|
|
68
|
+
"iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/story.svg",
|
|
69
|
+
"hierarchyLevel": 0,
|
|
70
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10001",
|
|
71
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
72
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": 2,
|
|
76
|
+
"name": "Task",
|
|
77
|
+
"description": "A task that needs to be done.",
|
|
78
|
+
"subtask": false,
|
|
79
|
+
"projectId": 1,
|
|
80
|
+
"iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/task.svg",
|
|
81
|
+
"hierarchyLevel": 0,
|
|
82
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10002",
|
|
83
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
84
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"id": 3,
|
|
88
|
+
"name": "Bug",
|
|
89
|
+
"description": "A problem which impairs or prevents the functions of the product.",
|
|
90
|
+
"subtask": false,
|
|
91
|
+
"projectId": 1,
|
|
92
|
+
"iconUrl": "https://your-domain.atlassian.net/images/icons/issuetypes/bug.svg",
|
|
93
|
+
"hierarchyLevel": 0,
|
|
94
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issuetype/10003",
|
|
95
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
96
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"statusCategories": [
|
|
100
|
+
{ "id": 1, "key": "undefined", "name": "No Category", "colorName": "medium-gray", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/1", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
101
|
+
{ "id": 2, "key": "new", "name": "To Do", "colorName": "blue-gray", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
102
|
+
{ "id": 3, "key": "indeterminate", "name": "In Progress", "colorName": "yellow", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
103
|
+
{ "id": 4, "key": "done", "name": "Done", "colorName": "green", "self": "https://your-domain.atlassian.net/rest/api/3/statuscategory/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
104
|
+
],
|
|
105
|
+
"statuses": [
|
|
106
|
+
{ "id": 1, "name": "To Do", "description": "Issue is open and not started.", "statusCategoryId": 2, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
107
|
+
{ "id": 2, "name": "In Progress", "description": "Issue is being actively worked on.", "statusCategoryId": 3, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10001", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
108
|
+
{ "id": 3, "name": "Done", "description": "Issue is complete.", "statusCategoryId": 4, "projectId": 1, "self": "https://your-domain.atlassian.net/rest/api/3/status/10002", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
109
|
+
],
|
|
110
|
+
"priorities": [
|
|
111
|
+
{ "id": 1, "name": "High", "description": "Serious problem that could block progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/high.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/2", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
112
|
+
{ "id": 2, "name": "Medium", "description": "Has the potential to affect progress.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/medium.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/3", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
113
|
+
{ "id": 3, "name": "Low", "description": "Minor problem or easily worked around.", "iconUrl": "https://your-domain.atlassian.net/images/icons/priorities/low.svg", "self": "https://your-domain.atlassian.net/rest/api/3/priority/4", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
114
|
+
],
|
|
115
|
+
"issues": [
|
|
116
|
+
{
|
|
117
|
+
"id": 1,
|
|
118
|
+
"key": "TMP-1",
|
|
119
|
+
"projectId": 1,
|
|
120
|
+
"issueTypeId": 1,
|
|
121
|
+
"summary": "Completed story from expired sprint",
|
|
122
|
+
"description": { "type": "doc", "version": 1, "content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "This story was resolved during the sprint that has now expired." }] }] },
|
|
123
|
+
"statusId": 3,
|
|
124
|
+
"priorityId": 1,
|
|
125
|
+
"assigneeAccountId": "5b10ac8d82e05b22cc7dtmp02",
|
|
126
|
+
"reporterAccountId": "5b10a2844c20165700temporal1",
|
|
127
|
+
"labels": [],
|
|
128
|
+
"componentIds": [],
|
|
129
|
+
"fixVersionIds": [1],
|
|
130
|
+
"parentKey": null,
|
|
131
|
+
"storyPoints": 5,
|
|
132
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issue/TMP-1",
|
|
133
|
+
"resolution": "Done",
|
|
134
|
+
"resolutionDate": "2026-02-28T16:00:00.000Z",
|
|
135
|
+
"createdAt": "2026-02-01T09:00:00.000Z",
|
|
136
|
+
"updatedAt": "2026-02-28T16:00:00.000Z"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"id": 2,
|
|
140
|
+
"key": "TMP-2",
|
|
141
|
+
"projectId": 1,
|
|
142
|
+
"issueTypeId": 2,
|
|
143
|
+
"summary": "Incomplete task still in sprint at expiry",
|
|
144
|
+
"description": { "type": "doc", "version": 1, "content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "This task was not finished when the sprint expired." }] }] },
|
|
145
|
+
"statusId": 2,
|
|
146
|
+
"priorityId": 2,
|
|
147
|
+
"assigneeAccountId": "5b10ac8d82e05b22cc7dtmp02",
|
|
148
|
+
"reporterAccountId": "5b10a2844c20165700temporal1",
|
|
149
|
+
"labels": [],
|
|
150
|
+
"componentIds": [],
|
|
151
|
+
"fixVersionIds": [],
|
|
152
|
+
"parentKey": null,
|
|
153
|
+
"storyPoints": 3,
|
|
154
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issue/TMP-2",
|
|
155
|
+
"resolution": null,
|
|
156
|
+
"resolutionDate": null,
|
|
157
|
+
"createdAt": "2026-02-01T09:00:00.000Z",
|
|
158
|
+
"updatedAt": "2026-02-15T11:00:00.000Z"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"id": 3,
|
|
162
|
+
"key": "TMP-3",
|
|
163
|
+
"projectId": 1,
|
|
164
|
+
"issueTypeId": 3,
|
|
165
|
+
"summary": "Bug not fixed before sprint ended",
|
|
166
|
+
"description": { "type": "doc", "version": 1, "content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "This bug was assigned but not resolved before the sprint deadline." }] }] },
|
|
167
|
+
"statusId": 1,
|
|
168
|
+
"priorityId": 1,
|
|
169
|
+
"assigneeAccountId": null,
|
|
170
|
+
"reporterAccountId": "5b10a2844c20165700temporal1",
|
|
171
|
+
"labels": ["bug"],
|
|
172
|
+
"componentIds": [],
|
|
173
|
+
"fixVersionIds": [],
|
|
174
|
+
"parentKey": null,
|
|
175
|
+
"storyPoints": 2,
|
|
176
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issue/TMP-3",
|
|
177
|
+
"resolution": null,
|
|
178
|
+
"resolutionDate": null,
|
|
179
|
+
"createdAt": "2026-02-05T09:00:00.000Z",
|
|
180
|
+
"updatedAt": "2026-02-05T09:00:00.000Z"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": 4,
|
|
184
|
+
"key": "TMP-4",
|
|
185
|
+
"projectId": 1,
|
|
186
|
+
"issueTypeId": 1,
|
|
187
|
+
"summary": "Story for future sprint that should auto-start",
|
|
188
|
+
"description": { "type": "doc", "version": 1, "content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "Issue belonging to the sprint whose start date has already passed." }] }] },
|
|
189
|
+
"statusId": 1,
|
|
190
|
+
"priorityId": 2,
|
|
191
|
+
"assigneeAccountId": "5b10ac8d82e05b22cc7dtmp02",
|
|
192
|
+
"reporterAccountId": "5b10a2844c20165700temporal1",
|
|
193
|
+
"labels": [],
|
|
194
|
+
"componentIds": [],
|
|
195
|
+
"fixVersionIds": [],
|
|
196
|
+
"parentKey": null,
|
|
197
|
+
"storyPoints": 8,
|
|
198
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issue/TMP-4",
|
|
199
|
+
"resolution": null,
|
|
200
|
+
"resolutionDate": null,
|
|
201
|
+
"createdAt": "2026-02-20T09:00:00.000Z",
|
|
202
|
+
"updatedAt": "2026-02-20T09:00:00.000Z"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": 5,
|
|
206
|
+
"key": "TMP-5",
|
|
207
|
+
"projectId": 1,
|
|
208
|
+
"issueTypeId": 2,
|
|
209
|
+
"summary": "Unassigned issue older than 14 days — SLA breach",
|
|
210
|
+
"description": { "type": "doc", "version": 1, "content": [{ "type": "paragraph", "content": [{ "type": "text", "text": "This issue has been unassigned for over 14 days, triggering an SLA breach event." }] }] },
|
|
211
|
+
"statusId": 1,
|
|
212
|
+
"priorityId": 1,
|
|
213
|
+
"assigneeAccountId": null,
|
|
214
|
+
"reporterAccountId": "5b10a2844c20165700temporal1",
|
|
215
|
+
"labels": ["sla-breach"],
|
|
216
|
+
"componentIds": [],
|
|
217
|
+
"fixVersionIds": [],
|
|
218
|
+
"parentKey": null,
|
|
219
|
+
"storyPoints": null,
|
|
220
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/issue/TMP-5",
|
|
221
|
+
"resolution": null,
|
|
222
|
+
"resolutionDate": null,
|
|
223
|
+
"createdAt": "2025-12-01T09:00:00.000Z",
|
|
224
|
+
"updatedAt": "2025-12-01T09:00:00.000Z"
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"comments": [],
|
|
228
|
+
"transitions": [
|
|
229
|
+
{ "id": 1, "name": "Start Progress", "toStatusId": 2, "projectId": 1, "fromStatusIds": [1], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
230
|
+
{ "id": 2, "name": "Done", "toStatusId": 3, "projectId": 1, "fromStatusIds": [1, 2], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
231
|
+
{ "id": 3, "name": "Reopen", "toStatusId": 1, "projectId": 1, "fromStatusIds": [2, 3], "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
232
|
+
],
|
|
233
|
+
"boards": [
|
|
234
|
+
{
|
|
235
|
+
"id": 1,
|
|
236
|
+
"name": "TMP Board",
|
|
237
|
+
"type": "scrum",
|
|
238
|
+
"projectId": 1,
|
|
239
|
+
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/1",
|
|
240
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
241
|
+
"updatedAt": "2024-01-01T00:00:00.000Z"
|
|
242
|
+
}
|
|
243
|
+
],
|
|
244
|
+
"sprints": [
|
|
245
|
+
{
|
|
246
|
+
"id": 1,
|
|
247
|
+
"boardId": 1,
|
|
248
|
+
"name": "Sprint 1 — Already Expired",
|
|
249
|
+
"state": "active",
|
|
250
|
+
"startDate": "2026-02-01T00:00:00.000Z",
|
|
251
|
+
"endDate": "2026-02-28T23:59:59.000Z",
|
|
252
|
+
"completeDate": null,
|
|
253
|
+
"goal": "Complete initial stories before March launch",
|
|
254
|
+
"self": "https://your-domain.atlassian.net/rest/agile/1.0/sprint/1",
|
|
255
|
+
"createdAt": "2026-01-31T00:00:00.000Z",
|
|
256
|
+
"updatedAt": "2026-02-01T00:00:00.000Z"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": 2,
|
|
260
|
+
"boardId": 1,
|
|
261
|
+
"name": "Sprint 2 — Future But Start Date Passed",
|
|
262
|
+
"state": "future",
|
|
263
|
+
"startDate": "2026-03-01T00:00:00.000Z",
|
|
264
|
+
"endDate": "2026-03-31T23:59:59.000Z",
|
|
265
|
+
"completeDate": null,
|
|
266
|
+
"goal": "Continue with next iteration",
|
|
267
|
+
"self": "https://your-domain.atlassian.net/rest/agile/1.0/sprint/2",
|
|
268
|
+
"createdAt": "2026-02-28T00:00:00.000Z",
|
|
269
|
+
"updatedAt": "2026-02-28T00:00:00.000Z"
|
|
270
|
+
}
|
|
271
|
+
],
|
|
272
|
+
"sprintIssues": [
|
|
273
|
+
{ "id": 1, "sprintId": 1, "issueId": 1, "createdAt": "2026-02-01T00:00:00.000Z", "updatedAt": "2026-02-01T00:00:00.000Z" },
|
|
274
|
+
{ "id": 2, "sprintId": 1, "issueId": 2, "createdAt": "2026-02-01T00:00:00.000Z", "updatedAt": "2026-02-01T00:00:00.000Z" },
|
|
275
|
+
{ "id": 3, "sprintId": 1, "issueId": 3, "createdAt": "2026-02-05T00:00:00.000Z", "updatedAt": "2026-02-05T00:00:00.000Z" },
|
|
276
|
+
{ "id": 4, "sprintId": 2, "issueId": 4, "createdAt": "2026-02-20T00:00:00.000Z", "updatedAt": "2026-02-20T00:00:00.000Z" }
|
|
277
|
+
],
|
|
278
|
+
"versions": [
|
|
279
|
+
{
|
|
280
|
+
"id": 1,
|
|
281
|
+
"projectId": 1,
|
|
282
|
+
"name": "v1.0.0 — March Release",
|
|
283
|
+
"description": "Initial product release slated for March 2026",
|
|
284
|
+
"archived": false,
|
|
285
|
+
"released": false,
|
|
286
|
+
"startDate": "2026-01-01T00:00:00.000Z",
|
|
287
|
+
"releaseDate": "2026-02-28T00:00:00.000Z",
|
|
288
|
+
"self": "https://your-domain.atlassian.net/rest/api/3/version/10001",
|
|
289
|
+
"createdAt": "2026-01-01T00:00:00.000Z",
|
|
290
|
+
"updatedAt": "2026-01-01T00:00:00.000Z"
|
|
291
|
+
}
|
|
292
|
+
],
|
|
293
|
+
"worklogs": [],
|
|
294
|
+
"attachments": [],
|
|
295
|
+
"components": [],
|
|
296
|
+
"issueLinks": [],
|
|
297
|
+
"issueLinkTypes": [
|
|
298
|
+
{ "id": 1, "name": "Blocks", "inward": "is blocked by", "outward": "blocks", "self": "https://your-domain.atlassian.net/rest/api/3/issueLinkType/10000", "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
299
|
+
],
|
|
300
|
+
"fields": [
|
|
301
|
+
{ "id": 1, "fieldId": "summary", "name": "Summary", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["summary"], "schema": { "type": "string", "system": "summary" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" },
|
|
302
|
+
{ "id": 2, "fieldId": "status", "name": "Status", "custom": false, "orderable": true, "navigable": true, "searchable": true, "clauseNames": ["status"], "schema": { "type": "status", "system": "status" }, "createdAt": "2024-01-01T00:00:00.000Z", "updatedAt": "2024-01-01T00:00:00.000Z" }
|
|
303
|
+
],
|
|
304
|
+
"watchers": [],
|
|
305
|
+
"remoteLinks": []
|
|
306
|
+
}
|