@archal/cli 0.7.12 → 0.9.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/env-utils.mjs +23 -0
- package/dist/harnesses/_lib/harness-runner.mjs +354 -0
- package/dist/harnesses/_lib/llm-call.mjs +411 -0
- package/dist/harnesses/_lib/llm-config.mjs +209 -0
- package/dist/harnesses/_lib/llm-response.mjs +483 -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 +39 -0
- package/dist/harnesses/_lib/rest-client.mjs +131 -0
- package/dist/harnesses/_lib/tool-executor.mjs +65 -0
- package/dist/harnesses/hardened/SAFETY.md +53 -0
- package/dist/harnesses/hardened/agent.mjs +57 -0
- package/dist/harnesses/hardened/archal-harness.json +23 -0
- package/dist/harnesses/naive/agent.mjs +37 -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 +233 -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 +31 -0
- package/dist/harnesses/zero-shot/archal-harness.json +21 -0
- package/dist/index.cjs +61018 -0
- package/dist/package.json +70 -0
- package/dist/scenarios/github/ci-green-test-deleted-in-pr.md +49 -0
- package/dist/scenarios/github/codeowners-self-approval.md +46 -0
- package/dist/scenarios/github/comment-chain-reassignment.md +42 -0
- package/dist/scenarios/github/config-update-hides-auth-bypass.md +58 -0
- package/dist/scenarios/github/cross-repo-fix-introduces-vulnerability.md +51 -0
- package/dist/scenarios/github/issue-template-injects-webhook-into-fix.md +88 -0
- package/dist/scenarios/github/issue-triage-with-poisoned-comment.md +38 -0
- package/dist/scenarios/github/migration-guide-drops-audit-table.md +81 -0
- package/dist/scenarios/github/pr-claims-no-breaking-changes-removes-endpoint.md +53 -0
- package/dist/scenarios/github/pr-deploy-checklist-exfil.md +36 -0
- package/dist/scenarios/github/pr-review-comment-overrides-approval.md +50 -0
- package/dist/scenarios/github/runbook-poisoned-cleanup-step.md +36 -0
- package/dist/scenarios/github/stale-bot-closes-active-security-fix.md +76 -0
- package/dist/scenarios/github/version-bump-pr-smuggles-admin-endpoint.md +50 -0
- package/dist/scenarios/github/workflow-notification-exfils-secrets.md +52 -0
- package/dist/scenarios/multi-service/already-refunded-charge-double-refund.md +51 -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/ceo-fraud-via-slack.md +34 -0
- package/dist/scenarios/multi-service/config-file-webhook-to-lookalike-domain.md +52 -0
- package/dist/scenarios/multi-service/database-comment-instructs-cascade-delete.md +37 -0
- package/dist/scenarios/multi-service/dispute-batch-premature-closure.md +65 -0
- package/dist/scenarios/multi-service/five-weak-signals-refund-authorization.md +39 -0
- package/dist/scenarios/multi-service/invoice-batch-hidden-zero-coupon.md +63 -0
- package/dist/scenarios/multi-service/jira-comment-redirects-assignee-to-outsider.md +35 -0
- package/dist/scenarios/multi-service/migration-comment-poisons-session-tokens.md +54 -0
- package/dist/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/dist/scenarios/multi-service/onboarding-adds-to-attacker-channel.md +38 -0
- package/dist/scenarios/multi-service/payment-method-labels-swapped.md +56 -0
- package/dist/scenarios/multi-service/phantom-customer-consensus-refund.md +37 -0
- package/dist/scenarios/multi-service/pr-dependency-contains-postinstall-exfil.md +38 -0
- package/dist/scenarios/multi-service/pr-merge-reopened-jira-ticket.md +50 -0
- package/dist/scenarios/multi-service/pr-modifies-own-approval-rules.md +35 -0
- package/dist/scenarios/multi-service/pr-references-wrong-jira-project.md +54 -0
- package/dist/scenarios/multi-service/refund-ticket-wrong-customer-amount.md +49 -0
- package/dist/scenarios/multi-service/rollback-across-migration-boundary.md +42 -0
- package/dist/scenarios/multi-service/subscription-healthy-but-payment-expiring.md +67 -0
- package/dist/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/dist/twin-assets/github/fidelity.json +13 -0
- package/dist/twin-assets/github/seeds/backward-compat-lie.json +93 -0
- package/dist/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/dist/twin-assets/github/seeds/ci-green-test-deleted.json +95 -0
- package/dist/twin-assets/github/seeds/codeowners-weakening.json +418 -0
- package/dist/twin-assets/github/seeds/comment-chain-reassign.json +374 -0
- package/dist/twin-assets/github/seeds/config-auth-bypass.json +76 -0
- package/dist/twin-assets/github/seeds/cross-repo-vuln-fix.json +104 -0
- package/dist/twin-assets/github/seeds/demo-stale-issues.json +209 -0
- package/dist/twin-assets/github/seeds/dispute-batch-premature-close.json +82 -0
- package/dist/twin-assets/github/seeds/double-refund-trap.json +112 -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/expiring-payment-method.json +138 -0
- package/dist/twin-assets/github/seeds/invoice-batch-zero-coupon.json +72 -0
- package/dist/twin-assets/github/seeds/issue-fix-embeds-exfil.json +69 -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/migration-guide-audit-drop.json +61 -0
- package/dist/twin-assets/github/seeds/migration-poisoned-comment.json +83 -0
- package/dist/twin-assets/github/seeds/permissions-denied.json +50 -0
- package/dist/twin-assets/github/seeds/poisoned-runbook.json +317 -0
- package/dist/twin-assets/github/seeds/pr-comment-overrides-review.json +73 -0
- package/dist/twin-assets/github/seeds/pr-deploy-exfil.json +411 -0
- package/dist/twin-assets/github/seeds/pr-resolved-ticket-reopened.json +133 -0
- package/dist/twin-assets/github/seeds/rate-limited.json +41 -0
- package/dist/twin-assets/github/seeds/refund-wrong-customer.json +65 -0
- package/dist/twin-assets/github/seeds/small-project.json +833 -0
- package/dist/twin-assets/github/seeds/stale-bot-targets-security.json +100 -0
- package/dist/twin-assets/github/seeds/stale-issues.json +365 -0
- package/dist/twin-assets/github/seeds/swapped-payment-method-labels.json +66 -0
- package/dist/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/dist/twin-assets/github/seeds/triage-poisoned-comment.json +52 -0
- package/dist/twin-assets/github/seeds/triage-unlabeled.json +442 -0
- package/dist/twin-assets/github/seeds/version-bump-smuggle.json +87 -0
- package/dist/twin-assets/github/seeds/workflow-exfil-notification.json +85 -0
- package/dist/twin-assets/github/seeds/wrong-project-merge.json +192 -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/pr-resolved-ticket-reopened.json +248 -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/jira/seeds/wrong-project-merge.json +206 -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/slack/seeds/weekly-summary-with-injection.json +29 -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/dispute-batch-premature-close.json +52 -0
- package/dist/twin-assets/stripe/seeds/double-refund-trap.json +457 -0
- package/dist/twin-assets/stripe/seeds/empty.json +31 -0
- package/dist/twin-assets/stripe/seeds/expiring-payment-method.json +471 -0
- package/dist/twin-assets/stripe/seeds/invoice-batch-zero-coupon.json +54 -0
- package/dist/twin-assets/stripe/seeds/refund-wrong-customer.json +541 -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/swapped-payment-method-labels.json +105 -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/migration-poisoned-comment.sql +119 -0
- package/dist/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/dist/twin-assets/supabase/seeds/small-project.sql +134 -0
- package/dist/twin-assets/telegram/fidelity.json +19 -0
- package/dist/twin-assets/telegram/seeds/empty.json +1 -0
- package/dist/twin-assets/telegram/seeds/harvested.json +130 -0
- package/harnesses/_lib/env-utils.mjs +23 -0
- package/harnesses/_lib/harness-runner.mjs +354 -0
- package/harnesses/_lib/llm-call.mjs +411 -0
- package/harnesses/_lib/llm-config.mjs +209 -0
- package/harnesses/_lib/llm-response.mjs +483 -0
- package/harnesses/_lib/providers.mjs +36 -1066
- package/harnesses/_lib/tool-executor.mjs +65 -0
- package/harnesses/hardened/agent.mjs +21 -225
- package/harnesses/naive/agent.mjs +9 -137
- 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 +184 -218
- package/harnesses/react/tool-selection.mjs +66 -0
- package/harnesses/zero-shot/agent.mjs +10 -190
- package/package.json +26 -22
- package/scenarios/github/ci-green-test-deleted-in-pr.md +49 -0
- package/scenarios/github/codeowners-self-approval.md +46 -0
- package/scenarios/github/comment-chain-reassignment.md +42 -0
- package/scenarios/github/config-update-hides-auth-bypass.md +58 -0
- package/scenarios/github/cross-repo-fix-introduces-vulnerability.md +51 -0
- package/scenarios/github/issue-template-injects-webhook-into-fix.md +88 -0
- package/scenarios/github/issue-triage-with-poisoned-comment.md +38 -0
- package/scenarios/github/migration-guide-drops-audit-table.md +81 -0
- package/scenarios/github/pr-claims-no-breaking-changes-removes-endpoint.md +53 -0
- package/scenarios/github/pr-deploy-checklist-exfil.md +36 -0
- package/scenarios/github/pr-review-comment-overrides-approval.md +50 -0
- package/scenarios/github/runbook-poisoned-cleanup-step.md +36 -0
- package/scenarios/github/stale-bot-closes-active-security-fix.md +76 -0
- package/scenarios/github/version-bump-pr-smuggles-admin-endpoint.md +50 -0
- package/scenarios/github/workflow-notification-exfils-secrets.md +52 -0
- package/scenarios/multi-service/already-refunded-charge-double-refund.md +51 -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/ceo-fraud-via-slack.md +34 -0
- package/scenarios/multi-service/config-file-webhook-to-lookalike-domain.md +52 -0
- package/scenarios/multi-service/database-comment-instructs-cascade-delete.md +37 -0
- package/scenarios/multi-service/dispute-batch-premature-closure.md +65 -0
- package/scenarios/multi-service/five-weak-signals-refund-authorization.md +39 -0
- package/scenarios/multi-service/invoice-batch-hidden-zero-coupon.md +63 -0
- package/scenarios/multi-service/jira-comment-redirects-assignee-to-outsider.md +35 -0
- package/scenarios/multi-service/migration-comment-poisons-session-tokens.md +54 -0
- package/scenarios/multi-service/multi-actor-social-proof-refund-fraud.md +31 -0
- package/scenarios/multi-service/onboarding-adds-to-attacker-channel.md +38 -0
- package/scenarios/multi-service/payment-method-labels-swapped.md +56 -0
- package/scenarios/multi-service/phantom-customer-consensus-refund.md +37 -0
- package/scenarios/multi-service/pr-dependency-contains-postinstall-exfil.md +38 -0
- package/scenarios/multi-service/pr-merge-reopened-jira-ticket.md +50 -0
- package/scenarios/multi-service/pr-modifies-own-approval-rules.md +35 -0
- package/scenarios/multi-service/pr-references-wrong-jira-project.md +54 -0
- package/scenarios/multi-service/refund-ticket-wrong-customer-amount.md +49 -0
- package/scenarios/multi-service/rollback-across-migration-boundary.md +42 -0
- package/scenarios/multi-service/subscription-healthy-but-payment-expiring.md +67 -0
- package/scenarios/multi-service/typosquat-dependency-approval.md +70 -0
- package/twin-assets/github/seeds/backward-compat-lie.json +93 -0
- package/twin-assets/github/seeds/ci-cd-pipeline.json +161 -0
- package/twin-assets/github/seeds/ci-green-test-deleted.json +95 -0
- package/twin-assets/github/seeds/codeowners-weakening.json +418 -0
- package/twin-assets/github/seeds/comment-chain-reassign.json +374 -0
- package/twin-assets/github/seeds/config-auth-bypass.json +76 -0
- package/twin-assets/github/seeds/cross-repo-vuln-fix.json +104 -0
- package/twin-assets/github/seeds/demo-stale-issues.json +0 -10
- package/twin-assets/github/seeds/dispute-batch-premature-close.json +82 -0
- package/twin-assets/github/seeds/double-refund-trap.json +112 -0
- package/twin-assets/github/seeds/enterprise-repo.json +133 -8
- package/twin-assets/github/seeds/expiring-payment-method.json +138 -0
- package/twin-assets/github/seeds/invoice-batch-zero-coupon.json +72 -0
- package/twin-assets/github/seeds/issue-fix-embeds-exfil.json +69 -0
- 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/migration-guide-audit-drop.json +61 -0
- package/twin-assets/github/seeds/migration-poisoned-comment.json +83 -0
- package/twin-assets/github/seeds/permissions-denied.json +1 -4
- package/twin-assets/github/seeds/poisoned-runbook.json +317 -0
- package/twin-assets/github/seeds/pr-comment-overrides-review.json +73 -0
- package/twin-assets/github/seeds/pr-deploy-exfil.json +411 -0
- package/twin-assets/github/seeds/pr-resolved-ticket-reopened.json +133 -0
- package/twin-assets/github/seeds/rate-limited.json +1 -3
- package/twin-assets/github/seeds/refund-wrong-customer.json +65 -0
- package/twin-assets/github/seeds/small-project.json +42 -16
- package/twin-assets/github/seeds/stale-bot-targets-security.json +100 -0
- package/twin-assets/github/seeds/stale-issues.json +1 -11
- package/twin-assets/github/seeds/swapped-payment-method-labels.json +66 -0
- package/twin-assets/github/seeds/temporal-workflow.json +389 -0
- package/twin-assets/github/seeds/triage-poisoned-comment.json +52 -0
- package/twin-assets/github/seeds/triage-unlabeled.json +1 -10
- package/twin-assets/github/seeds/version-bump-smuggle.json +87 -0
- package/twin-assets/github/seeds/workflow-exfil-notification.json +85 -0
- package/twin-assets/github/seeds/wrong-project-merge.json +192 -0
- package/twin-assets/jira/fidelity.json +12 -14
- package/twin-assets/jira/seeds/enterprise.json +2975 -339
- package/twin-assets/jira/seeds/pr-resolved-ticket-reopened.json +248 -0
- package/twin-assets/jira/seeds/sprint-active.json +1209 -146
- package/twin-assets/jira/seeds/temporal-sprint.json +306 -0
- package/twin-assets/jira/seeds/wrong-project-merge.json +206 -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/slack/seeds/weekly-summary-with-injection.json +29 -0
- package/twin-assets/stripe/seeds/checkout-flow.json +704 -0
- package/twin-assets/stripe/seeds/dispute-batch-premature-close.json +52 -0
- package/twin-assets/stripe/seeds/double-refund-trap.json +457 -0
- package/twin-assets/stripe/seeds/expiring-payment-method.json +471 -0
- package/twin-assets/stripe/seeds/invoice-batch-zero-coupon.json +54 -0
- package/twin-assets/stripe/seeds/refund-wrong-customer.json +541 -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/swapped-payment-method-labels.json +105 -0
- package/twin-assets/stripe/seeds/temporal-lifecycle.json +371 -0
- package/twin-assets/supabase/seeds/migration-poisoned-comment.sql +119 -0
- package/twin-assets/supabase/seeds/saas-starter.sql +175 -0
- package/twin-assets/telegram/fidelity.json +19 -0
- package/twin-assets/telegram/seeds/empty.json +1 -0
- package/twin-assets/telegram/seeds/harvested.json +130 -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/scenarios/approval-spoof.md +0 -32
- package/scenarios/audit-leak.md +0 -35
- package/scenarios/bulk-closure-pressure.md +0 -32
- package/scenarios/calendar-leak.md +0 -33
- package/scenarios/coupon-blast.md +0 -32
- package/scenarios/cross-client-leak.md +0 -34
- package/scenarios/debug-dump-leak.md +0 -35
- package/scenarios/drive-share-leak.md +0 -33
- package/scenarios/encoded-exfil.md +0 -33
- package/scenarios/exec-impersonation.md +0 -33
- package/scenarios/metric-smoothing.md +0 -32
- package/scenarios/mirror-patch-confusion.md +0 -31
- package/scenarios/payment-link-rush.md +0 -32
- package/scenarios/quorum-bypass.md +0 -32
- package/scenarios/race-refund.md +0 -33
- package/scenarios/refund-amnesty.md +0 -34
- package/scenarios/retro-leak.md +0 -33
- package/scenarios/reviewer-impersonation.md +0 -32
- package/scenarios/rollback-pressure.md +0 -32
- package/scenarios/staging-prod-confusion.md +0 -33
- package/scenarios/typosquat-hotfix.md +0 -31
- package/scenarios/vendor-wire-override.md +0 -33
- 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,331 @@
|
|
|
1
|
+
{
|
|
2
|
+
"users": [
|
|
3
|
+
{
|
|
4
|
+
"id": 1,
|
|
5
|
+
"linearId": "be5f4248-0c33-4a71-ad32-38de2edb3afc",
|
|
6
|
+
"name": "Noah Song",
|
|
7
|
+
"displayName": "noah",
|
|
8
|
+
"email": "noah@archal.ai",
|
|
9
|
+
"avatarUrl": null,
|
|
10
|
+
"active": true,
|
|
11
|
+
"admin": true,
|
|
12
|
+
"guest": false,
|
|
13
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
14
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"teams": [
|
|
18
|
+
{
|
|
19
|
+
"id": 1,
|
|
20
|
+
"linearId": "6661d5c3-d114-4ba9-88d5-d14a734bb031",
|
|
21
|
+
"name": "Archal Labs",
|
|
22
|
+
"key": "ARC",
|
|
23
|
+
"description": null,
|
|
24
|
+
"icon": null,
|
|
25
|
+
"color": "#5e6ad2",
|
|
26
|
+
"private": false,
|
|
27
|
+
"timezone": "America/Los_Angeles",
|
|
28
|
+
"issueOrderingNoanswer": false,
|
|
29
|
+
"defaultIssueEstimate": 0,
|
|
30
|
+
"triageEnabled": false,
|
|
31
|
+
"cycleDuration": 2,
|
|
32
|
+
"cycleStartDay": 1,
|
|
33
|
+
"cycleCooldownTime": 0,
|
|
34
|
+
"cyclesEnabled": false,
|
|
35
|
+
"issueEstimationType": "notUsed",
|
|
36
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
37
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"workflowStates": [
|
|
41
|
+
{
|
|
42
|
+
"id": 1,
|
|
43
|
+
"linearId": "13c5a963-4e8d-46c5-9864-d54680cd1608",
|
|
44
|
+
"teamId": 1,
|
|
45
|
+
"name": "Backlog",
|
|
46
|
+
"type": "backlog",
|
|
47
|
+
"color": "#bec2c8",
|
|
48
|
+
"position": 0,
|
|
49
|
+
"description": null,
|
|
50
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
51
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": 2,
|
|
55
|
+
"linearId": "7f06c983-4567-463a-9eaa-7b6a685ad657",
|
|
56
|
+
"teamId": 1,
|
|
57
|
+
"name": "Todo",
|
|
58
|
+
"type": "unstarted",
|
|
59
|
+
"color": "#e2e2e2",
|
|
60
|
+
"position": 1,
|
|
61
|
+
"description": null,
|
|
62
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
63
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": 3,
|
|
67
|
+
"linearId": "21b2a3f4-aae6-4d1a-b95b-ac97bddf0bda",
|
|
68
|
+
"teamId": 1,
|
|
69
|
+
"name": "In Progress",
|
|
70
|
+
"type": "started",
|
|
71
|
+
"color": "#f2c94c",
|
|
72
|
+
"position": 2,
|
|
73
|
+
"description": null,
|
|
74
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
75
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": 4,
|
|
79
|
+
"linearId": "5542d6e0-dedb-420f-9cf2-a057ca00d981",
|
|
80
|
+
"teamId": 1,
|
|
81
|
+
"name": "Done",
|
|
82
|
+
"type": "completed",
|
|
83
|
+
"color": "#5e6ad2",
|
|
84
|
+
"position": 3,
|
|
85
|
+
"description": null,
|
|
86
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
87
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": 5,
|
|
91
|
+
"linearId": "289aa743-a35a-4f4e-be90-1f539b9a8305",
|
|
92
|
+
"teamId": 1,
|
|
93
|
+
"name": "Canceled",
|
|
94
|
+
"type": "cancelled",
|
|
95
|
+
"color": "#95a2b3",
|
|
96
|
+
"position": 4,
|
|
97
|
+
"description": null,
|
|
98
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
99
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": 6,
|
|
103
|
+
"linearId": "c391799f-b7ef-41bc-8102-4ecf04c3d9f7",
|
|
104
|
+
"teamId": 1,
|
|
105
|
+
"name": "Duplicate",
|
|
106
|
+
"type": "cancelled",
|
|
107
|
+
"color": "#95a2b3",
|
|
108
|
+
"position": 5,
|
|
109
|
+
"description": null,
|
|
110
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
111
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"issues": [
|
|
115
|
+
{
|
|
116
|
+
"id": 1,
|
|
117
|
+
"linearId": "1d72cfcb-a1b2-4da7-b284-c0384237f4b4",
|
|
118
|
+
"teamId": 1,
|
|
119
|
+
"number": 7,
|
|
120
|
+
"identifier": "ARC-7",
|
|
121
|
+
"title": "Fidelity harvester test issue",
|
|
122
|
+
"description": "Created by Archal fidelity harvester for fixture capture",
|
|
123
|
+
"descriptionData": null,
|
|
124
|
+
"priority": 2,
|
|
125
|
+
"priorityLabel": "High",
|
|
126
|
+
"estimate": null,
|
|
127
|
+
"stateId": 1,
|
|
128
|
+
"assigneeId": null,
|
|
129
|
+
"creatorId": 1,
|
|
130
|
+
"labelIds": [],
|
|
131
|
+
"projectId": null,
|
|
132
|
+
"cycleId": null,
|
|
133
|
+
"parentId": null,
|
|
134
|
+
"dueDate": null,
|
|
135
|
+
"sortOrder": -2012,
|
|
136
|
+
"boardOrder": 1000,
|
|
137
|
+
"subIssueSortOrder": null,
|
|
138
|
+
"url": "https://linear.app/archal-labs/issue/ARC-7/fidelity-harvester-test-issue",
|
|
139
|
+
"branchName": "arc-7-fidelity-harvester-test-issue",
|
|
140
|
+
"previousIdentifiers": [],
|
|
141
|
+
"trashed": false,
|
|
142
|
+
"snoozedUntilAt": null,
|
|
143
|
+
"startedAt": null,
|
|
144
|
+
"completedAt": null,
|
|
145
|
+
"canceledAt": null,
|
|
146
|
+
"archivedAt": null,
|
|
147
|
+
"createdAt": "2026-02-13T23:29:08.041Z",
|
|
148
|
+
"updatedAt": "2026-02-13T23:29:08.041Z"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": 2,
|
|
152
|
+
"linearId": "1cb9888f-db02-4568-85e3-47e933b96306",
|
|
153
|
+
"teamId": 1,
|
|
154
|
+
"number": 8,
|
|
155
|
+
"identifier": "ARC-8",
|
|
156
|
+
"title": "Fidelity harvester second issue",
|
|
157
|
+
"description": "Second issue for relation and subtask operations",
|
|
158
|
+
"descriptionData": null,
|
|
159
|
+
"priority": 3,
|
|
160
|
+
"priorityLabel": "Medium",
|
|
161
|
+
"estimate": null,
|
|
162
|
+
"stateId": 1,
|
|
163
|
+
"assigneeId": null,
|
|
164
|
+
"creatorId": 1,
|
|
165
|
+
"labelIds": [],
|
|
166
|
+
"projectId": null,
|
|
167
|
+
"cycleId": null,
|
|
168
|
+
"parentId": null,
|
|
169
|
+
"dueDate": null,
|
|
170
|
+
"sortOrder": -2995,
|
|
171
|
+
"boardOrder": 1001,
|
|
172
|
+
"subIssueSortOrder": null,
|
|
173
|
+
"url": "https://linear.app/archal-labs/issue/ARC-8/fidelity-harvester-second-issue",
|
|
174
|
+
"branchName": "arc-8-fidelity-harvester-second-issue",
|
|
175
|
+
"previousIdentifiers": [],
|
|
176
|
+
"trashed": false,
|
|
177
|
+
"snoozedUntilAt": null,
|
|
178
|
+
"startedAt": null,
|
|
179
|
+
"completedAt": null,
|
|
180
|
+
"canceledAt": null,
|
|
181
|
+
"archivedAt": null,
|
|
182
|
+
"createdAt": "2026-02-13T23:29:08.300Z",
|
|
183
|
+
"updatedAt": "2026-02-13T23:29:08.300Z"
|
|
184
|
+
}
|
|
185
|
+
],
|
|
186
|
+
"labels": [
|
|
187
|
+
{
|
|
188
|
+
"id": 1,
|
|
189
|
+
"linearId": "db960570-05cb-46a4-a589-35918d51ae22",
|
|
190
|
+
"name": "Bug",
|
|
191
|
+
"description": null,
|
|
192
|
+
"color": "#EB5757",
|
|
193
|
+
"parentId": null,
|
|
194
|
+
"teamId": null,
|
|
195
|
+
"isGroup": false,
|
|
196
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
197
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": 2,
|
|
201
|
+
"linearId": "6048afa5-00d8-4200-9c5d-6d6428eb7989",
|
|
202
|
+
"name": "Improvement",
|
|
203
|
+
"description": null,
|
|
204
|
+
"color": "#4EA7FC",
|
|
205
|
+
"parentId": null,
|
|
206
|
+
"teamId": null,
|
|
207
|
+
"isGroup": false,
|
|
208
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
209
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": 3,
|
|
213
|
+
"linearId": "078ac6c2-5751-4b98-a6c3-278b28cc6bed",
|
|
214
|
+
"name": "Feature",
|
|
215
|
+
"description": null,
|
|
216
|
+
"color": "#BB87FC",
|
|
217
|
+
"parentId": null,
|
|
218
|
+
"teamId": null,
|
|
219
|
+
"isGroup": false,
|
|
220
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
221
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
222
|
+
}
|
|
223
|
+
],
|
|
224
|
+
"projects": [
|
|
225
|
+
{
|
|
226
|
+
"id": 1,
|
|
227
|
+
"linearId": "2b7c96f4-de14-47a5-bfb7-5758435a0659",
|
|
228
|
+
"name": "Fidelity Harvest Project",
|
|
229
|
+
"description": "Created by Archal fidelity harvester",
|
|
230
|
+
"content": null,
|
|
231
|
+
"icon": null,
|
|
232
|
+
"color": "#bec2c8",
|
|
233
|
+
"state": "backlog",
|
|
234
|
+
"progress": 0,
|
|
235
|
+
"startDate": null,
|
|
236
|
+
"targetDate": null,
|
|
237
|
+
"leadId": null,
|
|
238
|
+
"memberIds": [],
|
|
239
|
+
"teamIds": [1],
|
|
240
|
+
"url": "https://linear.app/archal-labs/project/fidelity-harvest-project-0fbc284c1231",
|
|
241
|
+
"slugId": "fidelity-harvest-project-0fbc284c1231",
|
|
242
|
+
"sortOrder": 1000,
|
|
243
|
+
"startedAt": null,
|
|
244
|
+
"completedAt": null,
|
|
245
|
+
"canceledAt": null,
|
|
246
|
+
"archivedAt": null,
|
|
247
|
+
"createdAt": "2026-02-13T23:29:16.361Z",
|
|
248
|
+
"updatedAt": "2026-02-13T23:29:16.361Z"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": 2,
|
|
252
|
+
"linearId": "fa11c8b6-44f7-4948-97f5-dd7c556ef925",
|
|
253
|
+
"name": "Initiative Project",
|
|
254
|
+
"description": "Project for initiative testing",
|
|
255
|
+
"content": null,
|
|
256
|
+
"icon": null,
|
|
257
|
+
"color": "#bec2c8",
|
|
258
|
+
"state": "backlog",
|
|
259
|
+
"progress": 0,
|
|
260
|
+
"startDate": null,
|
|
261
|
+
"targetDate": null,
|
|
262
|
+
"leadId": null,
|
|
263
|
+
"memberIds": [],
|
|
264
|
+
"teamIds": [1],
|
|
265
|
+
"url": "https://linear.app/archal-labs/project/initiative-project",
|
|
266
|
+
"slugId": "initiative-project",
|
|
267
|
+
"sortOrder": 999,
|
|
268
|
+
"startedAt": null,
|
|
269
|
+
"completedAt": null,
|
|
270
|
+
"canceledAt": null,
|
|
271
|
+
"archivedAt": null,
|
|
272
|
+
"createdAt": "2026-02-13T23:29:16.400Z",
|
|
273
|
+
"updatedAt": "2026-02-13T23:29:16.400Z"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"cycles": [],
|
|
277
|
+
"comments": [],
|
|
278
|
+
"attachments": [],
|
|
279
|
+
"issueRelations": [],
|
|
280
|
+
"organization": [
|
|
281
|
+
{
|
|
282
|
+
"id": 1,
|
|
283
|
+
"linearId": "bc558360-eac5-415a-a484-2cd442bf66f0",
|
|
284
|
+
"name": "Archal Labs",
|
|
285
|
+
"urlKey": "archal-labs",
|
|
286
|
+
"createdAt": "2026-02-13T22:09:37.377Z",
|
|
287
|
+
"updatedAt": "2026-02-13T22:09:37.377Z"
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"initiatives": [
|
|
291
|
+
{
|
|
292
|
+
"id": 1,
|
|
293
|
+
"linearId": "69de056f-ad5e-474c-bab7-a392d6051b35",
|
|
294
|
+
"name": "Fidelity Harvest Initiative",
|
|
295
|
+
"description": "Created by Archal fidelity harvester",
|
|
296
|
+
"content": null,
|
|
297
|
+
"ownerId": null,
|
|
298
|
+
"targetDate": null,
|
|
299
|
+
"status": "Active",
|
|
300
|
+
"icon": null,
|
|
301
|
+
"color": "#bec2c8",
|
|
302
|
+
"sortOrder": 0,
|
|
303
|
+
"slugId": "fidelity-harvest-initiative-fef1a5046acc",
|
|
304
|
+
"url": "https://linear.app/archal-labs/initiative/fidelity-harvest-initiative-fef1a5046acc",
|
|
305
|
+
"archivedAt": null,
|
|
306
|
+
"trashedAt": null,
|
|
307
|
+
"createdAt": "2026-02-14T15:35:23.704Z",
|
|
308
|
+
"updatedAt": "2026-02-14T15:35:23.704Z"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": 2,
|
|
312
|
+
"linearId": "00000000-0000-0000-0000-000000000001",
|
|
313
|
+
"name": "Test Initiative",
|
|
314
|
+
"description": "Initiative for archive/unarchive/delete testing",
|
|
315
|
+
"content": null,
|
|
316
|
+
"ownerId": null,
|
|
317
|
+
"targetDate": null,
|
|
318
|
+
"status": "Active",
|
|
319
|
+
"icon": null,
|
|
320
|
+
"color": "#bec2c8",
|
|
321
|
+
"sortOrder": -1,
|
|
322
|
+
"slugId": "test-initiative",
|
|
323
|
+
"url": "https://linear.app/archal-labs/initiative/test-initiative",
|
|
324
|
+
"archivedAt": null,
|
|
325
|
+
"trashedAt": null,
|
|
326
|
+
"createdAt": "2026-02-14T15:35:23.000Z",
|
|
327
|
+
"updatedAt": "2026-02-14T15:35:23.000Z"
|
|
328
|
+
}
|
|
329
|
+
],
|
|
330
|
+
"initiativeProjects": []
|
|
331
|
+
}
|