create-walle 0.9.21 → 0.9.23
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 +27 -5
- package/package.json +2 -2
- package/template/CLAUDE.md +2 -2
- package/template/LICENSE +1 -1
- package/template/bin/ctm-dev-cleanup.js +24 -3
- package/template/bin/ctm-launch.sh +13 -0
- package/template/bin/dev.sh +156 -18
- package/template/bin/node-bin.sh +84 -0
- package/template/bin/pin-node.sh +51 -0
- package/template/claude-task-manager/api-prompts.js +1203 -182
- package/template/claude-task-manager/api-reviews.js +109 -15
- package/template/claude-task-manager/approval-agent.js +1360 -280
- package/template/claude-task-manager/bin/restart-ctm.sh +64 -23
- package/template/claude-task-manager/bin/storage-migration-supervisor.js +338 -0
- package/template/claude-task-manager/db.js +4417 -295
- package/template/claude-task-manager/docs/app-update-refresh-protocol.md +69 -0
- package/template/claude-task-manager/docs/approval-ai-refinement.md +138 -0
- package/template/claude-task-manager/docs/approval-rescue-loop.md +74 -0
- package/template/claude-task-manager/docs/codex-operational-warning-health.md +107 -0
- package/template/claude-task-manager/docs/codex-resume-state-guard-design.md +17 -12
- package/template/claude-task-manager/docs/codex-terminal-render-controller-handoff.md +311 -0
- package/template/claude-task-manager/docs/coding-agent-hooks-architecture.md +418 -0
- package/template/claude-task-manager/docs/conversation-import-freshness.md +20 -0
- package/template/claude-task-manager/docs/google-workspace-auth-health.md +77 -0
- package/template/claude-task-manager/docs/image-paste-ux.md +13 -0
- package/template/claude-task-manager/docs/ipad-web-preview.md +88 -0
- package/template/claude-task-manager/docs/main-loop-offload-architecture.md +66 -0
- package/template/claude-task-manager/docs/microsoft-dev-tunnel-phone-access-design.md +274 -519
- package/template/claude-task-manager/docs/mobile-live-streaming.md +27 -5
- package/template/claude-task-manager/docs/mobile-remote-submission-lifecycle.md +69 -0
- package/template/claude-task-manager/docs/phone-access-design.md +53 -15
- package/template/claude-task-manager/docs/phone-passkey-identity.md +122 -0
- package/template/claude-task-manager/docs/phone-setup.md +3 -0
- package/template/claude-task-manager/docs/prompt-editing-tree-design.md +25 -1
- package/template/claude-task-manager/docs/remote-desktop-access-design.md +268 -0
- package/template/claude-task-manager/docs/restart-lifecycle-architecture.md +95 -0
- package/template/claude-task-manager/docs/runtime-work-control-plane.md +53 -0
- package/template/claude-task-manager/docs/session-interactive-wait-surfaces.md +38 -0
- package/template/claude-task-manager/docs/session-needs-you-dismissal.md +84 -0
- package/template/claude-task-manager/docs/session-render-state-management-design.md +91 -3
- package/template/claude-task-manager/docs/session-standup-command-center-design.md +25 -1
- package/template/claude-task-manager/docs/session-title-authority.md +32 -0
- package/template/claude-task-manager/docs/session-workspace-binding.md +33 -0
- package/template/claude-task-manager/docs/skill-intent-resolution-design.md +72 -0
- package/template/claude-task-manager/docs/walle-mcp-supervisor-health.md +86 -0
- package/template/claude-task-manager/docs/walle-relay-phone-access-design.md +24 -15
- package/template/claude-task-manager/docs/walle-session-history-hydration.md +114 -0
- package/template/claude-task-manager/docs/walle-session-input-queue.md +104 -0
- package/template/claude-task-manager/docs/walle-session-model-catalog.md +90 -0
- package/template/claude-task-manager/docs/walle-session-model-preferences.md +15 -6
- package/template/claude-task-manager/git-utils.js +897 -27
- package/template/claude-task-manager/lib/agent-capabilities.js +33 -0
- package/template/claude-task-manager/lib/agent-cli-cache.js +37 -7
- package/template/claude-task-manager/lib/agent-hooks-installer.js +26 -2
- package/template/claude-task-manager/lib/agent-presets.js +17 -1
- package/template/claude-task-manager/lib/all-sessions-query.js +108 -0
- package/template/claude-task-manager/lib/approval-ai-refinement.js +488 -0
- package/template/claude-task-manager/lib/approval-self-adapt.js +168 -0
- package/template/claude-task-manager/lib/async-semaphore.js +44 -0
- package/template/claude-task-manager/lib/auth-context.js +5 -0
- package/template/claude-task-manager/lib/auth-rate-limit.js +47 -4
- package/template/claude-task-manager/lib/auth-rules.js +29 -2
- package/template/claude-task-manager/lib/auto-approval-verifier.js +129 -16
- package/template/claude-task-manager/lib/background-llm.js +144 -17
- package/template/claude-task-manager/lib/branch-inventory.js +212 -0
- package/template/claude-task-manager/lib/claude-desktop-sessions.js +15 -3
- package/template/claude-task-manager/lib/coalesce-sync-frames.js +151 -0
- package/template/claude-task-manager/lib/codex-launch-health.js +762 -0
- package/template/claude-task-manager/lib/codex-transcript-pager.js +51 -0
- package/template/claude-task-manager/lib/codex-zst.js +124 -0
- package/template/claude-task-manager/lib/coding-agent-models.js +233 -30
- package/template/claude-task-manager/lib/connection-health.js +232 -0
- package/template/claude-task-manager/lib/conversation-blob-parser.js +42 -0
- package/template/claude-task-manager/lib/conversation-tail-merge.js +89 -26
- package/template/claude-task-manager/lib/ctm-session-context-api.js +39 -10
- package/template/claude-task-manager/lib/cursor-conversation-store.js +354 -0
- package/template/claude-task-manager/lib/db-owner-worker-client.js +315 -0
- package/template/claude-task-manager/lib/document-review.js +141 -6
- package/template/claude-task-manager/lib/escalation-review.js +152 -0
- package/template/claude-task-manager/lib/graceful-shutdown.js +159 -0
- package/template/claude-task-manager/lib/headless-term-service.js +678 -0
- package/template/claude-task-manager/lib/heavy-worker-fallback.js +38 -0
- package/template/claude-task-manager/lib/jsonl-conversation-parser.js +542 -0
- package/template/claude-task-manager/lib/jsonl-range-reader.js +112 -0
- package/template/claude-task-manager/lib/main-db-census.js +216 -0
- package/template/claude-task-manager/lib/message-pagination.js +106 -4
- package/template/claude-task-manager/lib/microsoft-dev-tunnel-setup.js +750 -26
- package/template/claude-task-manager/lib/mobile-auth-api.js +274 -7
- package/template/claude-task-manager/lib/mobile-auth-store.js +592 -10
- package/template/claude-task-manager/lib/mobile-notification-dispatcher.js +15 -0
- package/template/claude-task-manager/lib/model-overview-brain-fallback.js +311 -0
- package/template/claude-task-manager/lib/model-overview-cache.js +141 -0
- package/template/claude-task-manager/lib/models-health-routing-notice.js +126 -0
- package/template/claude-task-manager/lib/node-pin-guard.js +93 -0
- package/template/claude-task-manager/lib/perf-tracker.js +242 -6
- package/template/claude-task-manager/lib/permission-match.js +76 -0
- package/template/claude-task-manager/lib/permission-sync.js +133 -20
- package/template/claude-task-manager/lib/process-title.js +35 -0
- package/template/claude-task-manager/lib/prompt-executions-query.js +25 -0
- package/template/claude-task-manager/lib/prompt-index-disk-cache.js +44 -0
- package/template/claude-task-manager/lib/prompt-intent.js +132 -0
- package/template/claude-task-manager/lib/provider-user-context.js +34 -0
- package/template/claude-task-manager/lib/read-pool-client.js +313 -0
- package/template/claude-task-manager/lib/readpool-breaker.js +31 -0
- package/template/claude-task-manager/lib/recent-sessions-breaker.js +12 -0
- package/template/claude-task-manager/lib/remote-feedback-client.js +72 -0
- package/template/claude-task-manager/lib/remote-relay-protocol.js +37 -4
- package/template/claude-task-manager/lib/remote-relay-store.js +159 -0
- package/template/claude-task-manager/lib/remote-submission-observer.js +278 -0
- package/template/claude-task-manager/lib/restart-guard.js +109 -0
- package/template/claude-task-manager/lib/restore-interruption-detector.js +439 -0
- package/template/claude-task-manager/lib/restore-policy.js +13 -0
- package/template/claude-task-manager/lib/restore-resume-batch.js +74 -0
- package/template/claude-task-manager/lib/restore-runtime.js +68 -0
- package/template/claude-task-manager/lib/restore-storm.js +34 -0
- package/template/claude-task-manager/lib/resume-cwd.js +36 -0
- package/template/claude-task-manager/lib/resume-preflight.js +313 -0
- package/template/claude-task-manager/lib/runtime-work-registry.js +444 -0
- package/template/claude-task-manager/lib/sanitize-openai-auth.js +31 -0
- package/template/claude-task-manager/lib/scheduler.js +21 -1
- package/template/claude-task-manager/lib/scrollback-snapshot-store.js +159 -0
- package/template/claude-task-manager/lib/serial-task-queue.js +64 -0
- package/template/claude-task-manager/lib/server-listeners.js +239 -0
- package/template/claude-task-manager/lib/session-capture.js +42 -7
- package/template/claude-task-manager/lib/session-content-backfill.js +131 -0
- package/template/claude-task-manager/lib/session-history.js +388 -43
- package/template/claude-task-manager/lib/session-host-manager.js +287 -0
- package/template/claude-task-manager/lib/session-image-refs.js +209 -0
- package/template/claude-task-manager/lib/session-jobs.js +399 -59
- package/template/claude-task-manager/lib/session-prompt-index.js +137 -0
- package/template/claude-task-manager/lib/session-restore.js +53 -0
- package/template/claude-task-manager/lib/session-standup.js +123 -23
- package/template/claude-task-manager/lib/session-state-bus.js +14 -0
- package/template/claude-task-manager/lib/session-stream.js +64 -16
- package/template/claude-task-manager/lib/session-timeline-summary.js +260 -0
- package/template/claude-task-manager/lib/session-token-usage.js +494 -0
- package/template/claude-task-manager/lib/session-workspace-binding.js +356 -0
- package/template/claude-task-manager/lib/setup-network-config.js +9 -0
- package/template/claude-task-manager/lib/size-cap.js +45 -0
- package/template/claude-task-manager/lib/size-cap.test.js +62 -0
- package/template/claude-task-manager/lib/skill-autocomplete.js +180 -1
- package/template/claude-task-manager/lib/skill-intent-resolver.js +304 -0
- package/template/claude-task-manager/lib/sqlite-driver.js +19 -3
- package/template/claude-task-manager/lib/standup-attention.js +7 -3
- package/template/claude-task-manager/lib/status-authority.js +39 -0
- package/template/claude-task-manager/lib/status-hooks.js +4 -0
- package/template/claude-task-manager/lib/storage-migration.js +235 -0
- package/template/claude-task-manager/lib/structured-capture.js +298 -0
- package/template/claude-task-manager/lib/sync-io-census.js +163 -0
- package/template/claude-task-manager/lib/tailscale-setup.js +6 -0
- package/template/claude-task-manager/lib/terminal-activity-evidence.js +33 -0
- package/template/claude-task-manager/lib/terminal-choice.js +364 -0
- package/template/claude-task-manager/lib/terminal-control-sanitize.js +17 -0
- package/template/claude-task-manager/lib/terminal-fingerprint.js +48 -0
- package/template/claude-task-manager/lib/terminal-output-flush.js +84 -0
- package/template/claude-task-manager/lib/timeline-order.js +122 -0
- package/template/claude-task-manager/lib/transcript-store.js +348 -43
- package/template/claude-task-manager/lib/transport-security.js +84 -1
- package/template/claude-task-manager/lib/wait-state.js +184 -0
- package/template/claude-task-manager/lib/walle-client.js +47 -5
- package/template/claude-task-manager/lib/walle-ctm-history.js +564 -4
- package/template/claude-task-manager/lib/walle-external-actions.js +135 -16
- package/template/claude-task-manager/lib/walle-history-hydration.js +46 -0
- package/template/claude-task-manager/lib/walle-native-health.js +403 -0
- package/template/claude-task-manager/lib/walle-repair.js +701 -0
- package/template/claude-task-manager/lib/walle-session-cache.js +109 -0
- package/template/claude-task-manager/lib/walle-session-context.js +57 -21
- package/template/claude-task-manager/lib/walle-session-model-catalog.js +34 -0
- package/template/claude-task-manager/lib/walle-supervisor.js +539 -63
- package/template/claude-task-manager/lib/walle-transcript.js +52 -0
- package/template/claude-task-manager/lib/worktree-active-sync.js +11 -7
- package/template/claude-task-manager/lib/worktree-cwd.js +32 -1
- package/template/claude-task-manager/package.json +1 -1
- package/template/claude-task-manager/prompt-harvest.js +89 -66
- package/template/claude-task-manager/providers/claude-code.js +51 -3
- package/template/claude-task-manager/providers/cursor.js +140 -45
- package/template/claude-task-manager/public/css/reviews.css +551 -61
- package/template/claude-task-manager/public/css/setup.css +191 -0
- package/template/claude-task-manager/public/css/walle-session.css +865 -10
- package/template/claude-task-manager/public/css/walle.css +154 -0
- package/template/claude-task-manager/public/designs/ai-providers-consolidation-v2.html +830 -0
- package/template/claude-task-manager/public/index.html +18516 -2058
- package/template/claude-task-manager/public/ipad.html +363 -0
- package/template/claude-task-manager/public/js/document-review-links.js +301 -0
- package/template/claude-task-manager/public/js/image-normalize.js +69 -36
- package/template/claude-task-manager/public/js/message-renderer.js +1265 -77
- package/template/claude-task-manager/public/js/prompts.js +66 -29
- package/template/claude-task-manager/public/js/reviews.js +901 -133
- package/template/claude-task-manager/public/js/session-activity-utils.js +11 -1
- package/template/claude-task-manager/public/js/session-search-utils.js +94 -10
- package/template/claude-task-manager/public/js/session-status-precedence.js +23 -5
- package/template/claude-task-manager/public/js/setup.js +1273 -176
- package/template/claude-task-manager/public/js/stream-view.js +691 -73
- package/template/claude-task-manager/public/js/terminal-reconciler.js +210 -0
- package/template/claude-task-manager/public/js/walle-session.js +2455 -158
- package/template/claude-task-manager/public/js/walle.js +455 -28
- package/template/claude-task-manager/public/m/app.css +2909 -262
- package/template/claude-task-manager/public/m/app.js +6601 -398
- package/template/claude-task-manager/public/m/claim.html +224 -17
- package/template/claude-task-manager/public/m/index.html +117 -21
- package/template/claude-task-manager/public/m/sw.js +3 -1
- package/template/claude-task-manager/public/manifest.json +2 -2
- package/template/claude-task-manager/public/prompts.html +30 -14
- package/template/claude-task-manager/queue-engine.js +507 -28
- package/template/claude-task-manager/scripts/repair-claude-session-images.js +27 -8
- package/template/claude-task-manager/server.js +14341 -2197
- package/template/claude-task-manager/session-integrity.js +160 -18
- package/template/claude-task-manager/session-search-ranking.js +1 -0
- package/template/claude-task-manager/session-utils.js +25 -5
- package/template/claude-task-manager/workers/approval-blocklist.js +96 -6
- package/template/claude-task-manager/workers/approval-widget-validator.js +14 -8
- package/template/claude-task-manager/workers/conversation-import-worker.js +11 -50
- package/template/claude-task-manager/workers/db-owner-worker.js +386 -0
- package/template/claude-task-manager/workers/harvest-worker.js +9 -55
- package/template/claude-task-manager/workers/headless-term-worker.js +9 -530
- package/template/claude-task-manager/workers/read-pool-worker.js +387 -0
- package/template/claude-task-manager/workers/scrollback-worker.js +11 -72
- package/template/claude-task-manager/workers/session-host-process.js +146 -0
- package/template/claude-task-manager/workers/session-integrity-worker.js +10 -54
- package/template/claude-task-manager/workers/state-detectors/base.js +18 -1
- package/template/claude-task-manager/workers/state-detectors/claude-code.js +182 -9
- package/template/claude-task-manager/workers/state-detectors/codex.js +150 -2
- package/template/claude-task-manager/workers/state-detectors/cursor.js +127 -0
- package/template/claude-task-manager/workers/state-detectors/gemini.js +21 -0
- package/template/claude-task-manager/workers/state-detectors/index.js +29 -0
- package/template/claude-task-manager/workers/state-detectors/opencode.js +103 -0
- package/template/docs/design/markdown-review-pane.md +206 -0
- package/template/docs/designs/2026-05-17-portkey-gateway-provider-ux.md +129 -38
- package/template/docs/designs/2026-05-20-mobile-worktree-finish-command.md +27 -0
- package/template/docs/designs/2026-05-22-ai-configuration-consolidation.md +248 -0
- package/template/docs/designs/ai-configuration-consolidation-mock.html +812 -0
- package/template/docs/private-memory-and-pii-policy.md +69 -0
- package/template/package.json +2 -1
- package/template/scripts/check-private-data.js +201 -0
- package/template/shared/sqlite-owner-guard.js +30 -0
- package/template/shared/sqlite-owner-write-queue.js +225 -0
- package/template/shared/sqlite-storage-policy.js +111 -0
- package/template/shared/sqlite-write-lock.js +428 -0
- package/template/wall-e/agent-runners/claude-code.js +5 -0
- package/template/wall-e/agent.js +166 -22
- package/template/wall-e/api-walle.js +524 -70
- package/template/wall-e/auth/provider-flows.js +11 -1
- package/template/wall-e/bin/walle-mcp-stdio.js +341 -17
- package/template/wall-e/brain.js +1614 -141
- package/template/wall-e/chat/attachment-blocks.js +96 -0
- package/template/wall-e/chat/attachments.js +2 -1
- package/template/wall-e/chat/capability-resolver.js +7 -7
- package/template/wall-e/chat/context-messages.js +28 -0
- package/template/wall-e/chat/conversation-frame.js +630 -0
- package/template/wall-e/chat/provider-messages.js +125 -0
- package/template/wall-e/chat.js +1002 -233
- package/template/wall-e/coding/acceptance-contract.js +170 -0
- package/template/wall-e/coding/acp-adapter.js +1 -1
- package/template/wall-e/coding/agent-catalog.js +3 -0
- package/template/wall-e/coding/artifact-store.js +93 -0
- package/template/wall-e/coding/capability-router.js +120 -0
- package/template/wall-e/coding/coding-run-controller.js +423 -0
- package/template/wall-e/coding/compaction-service.js +157 -12
- package/template/wall-e/coding/frontend-verification.js +258 -0
- package/template/wall-e/coding/lifecycle-hooks.js +75 -0
- package/template/wall-e/coding/local-preview-contract.js +157 -0
- package/template/wall-e/coding/permission-service.js +57 -13
- package/template/wall-e/coding/prompt-bundle.js +19 -1
- package/template/wall-e/coding/prompt-section-registry.js +227 -0
- package/template/wall-e/coding/provider-compat.js +15 -0
- package/template/wall-e/coding/runtime-events.js +224 -0
- package/template/wall-e/coding/runtime-mode.js +3 -0
- package/template/wall-e/coding/side-git-snapshot.js +160 -4
- package/template/wall-e/coding/snapshot-service.js +143 -1
- package/template/wall-e/coding/stream-processor.js +388 -34
- package/template/wall-e/coding/task-tool.js +141 -4
- package/template/wall-e/coding/tool-execution-controller.js +365 -0
- package/template/wall-e/coding/tool-registry.js +43 -5
- package/template/wall-e/coding/user-hooks.js +217 -0
- package/template/wall-e/coding-orchestrator.js +1330 -221
- package/template/wall-e/coding-prompts.js +20 -4
- package/template/wall-e/context/context-builder.js +15 -2
- package/template/wall-e/decision/confidence.js +1 -1
- package/template/wall-e/docs/coding-acceptance-contract.md +41 -0
- package/template/wall-e/docs/external-action-controller.md +26 -6
- package/template/wall-e/docs/telemetry-lifecycle.md +8 -2
- package/template/wall-e/embeddings.js +591 -53
- package/template/wall-e/external-action-controller.js +12 -0
- package/template/wall-e/http/auth.js +1 -0
- package/template/wall-e/http/chat-api.js +46 -11
- package/template/wall-e/http/model-admin.js +836 -34
- package/template/wall-e/lib/boot-profile.js +88 -0
- package/template/wall-e/lib/event-loop-monitor.js +93 -0
- package/template/wall-e/lib/service-health.js +194 -0
- package/template/wall-e/llm/anthropic.js +130 -5
- package/template/wall-e/llm/client.js +266 -63
- package/template/wall-e/llm/default-fallback.js +382 -0
- package/template/wall-e/llm/health.js +19 -0
- package/template/wall-e/llm/message-guard.js +78 -0
- package/template/wall-e/llm/model-catalog.js +252 -1
- package/template/wall-e/llm/openai.js +26 -4
- package/template/wall-e/llm/portkey-sync.js +654 -0
- package/template/wall-e/llm/provider-error.js +30 -2
- package/template/wall-e/llm/registry.js +5 -1
- package/template/wall-e/llm/request-compat.js +67 -0
- package/template/wall-e/loops/backfill.js +79 -23
- package/template/wall-e/loops/brain-optimize.js +67 -0
- package/template/wall-e/loops/ingest.js +25 -10
- package/template/wall-e/loops/question-digest.js +160 -0
- package/template/wall-e/loops/reflect.js +6 -4
- package/template/wall-e/loops/think.js +39 -12
- package/template/wall-e/mcp-server.js +318 -36
- package/template/wall-e/memory/ctm-context-client.js +52 -14
- package/template/wall-e/memory/ctm-operational-context.js +237 -0
- package/template/wall-e/memory/ctm-prompt-executions-client.js +128 -0
- package/template/wall-e/memory/ctm-session-context.js +111 -63
- package/template/wall-e/prompts/coding/deepseek.txt +3 -0
- package/template/wall-e/prompts/coding/gemini.txt +6 -0
- package/template/wall-e/prompts/coding/gpt.txt +6 -0
- package/template/wall-e/prompts/coding/local.txt +7 -0
- package/template/wall-e/runtime/decision-hooks.js +115 -0
- package/template/wall-e/runtime/devbox-gateway.js +82 -8
- package/template/wall-e/runtime/prompt-manifest.js +86 -0
- package/template/wall-e/runtime/tool-executor.js +269 -0
- package/template/wall-e/runtime/tool-result-envelope.js +138 -0
- package/template/wall-e/runtime/transcript-projection.js +60 -0
- package/template/wall-e/runtime/walle-runtime.js +224 -0
- package/template/wall-e/scripts/db-optimize/migrate.js +162 -0
- package/template/wall-e/scripts/db-optimize/recall-eval.js +117 -0
- package/template/wall-e/server.js +15 -0
- package/template/wall-e/session-files.js +9 -0
- package/template/wall-e/skills/_bundled/google-calendar/run.js +1 -1
- package/template/wall-e/skills/_bundled/gws-workspace/run.js +1 -1
- package/template/wall-e/skills/_bundled/slack-mentions/run.js +76 -6
- package/template/wall-e/skills/claude-code-reader.js +7 -3
- package/template/wall-e/skills/script-skill-runner.js +10 -0
- package/template/wall-e/skills/skill-planner.js +38 -0
- package/template/wall-e/tools/builtin-middleware.js +19 -9
- package/template/wall-e/tools/local-tools.js +1428 -16
- package/template/wall-e/tools/permission-checker.js +73 -5
- package/template/wall-e/tools/question-manager.js +117 -7
- package/template/wall-e/training/harvester.js +12 -28
- package/template/wall-e/training/replay.js +25 -80
- package/template/website/index.html +10 -10
- package/template/wall-e/eval/ab-test.js +0 -203
- package/template/wall-e/eval/agent-runner.js +0 -772
- package/template/wall-e/eval/agent-scorer.js +0 -461
- package/template/wall-e/eval/aggregator.js +0 -414
- package/template/wall-e/eval/allowed-test-commands.js +0 -34
- package/template/wall-e/eval/benchmark-generator.js +0 -113
- package/template/wall-e/eval/benchmarks/chat-eval.json +0 -1662
- package/template/wall-e/eval/benchmarks/chat.json +0 -82
- package/template/wall-e/eval/benchmarks/coding-agent-real.json +0 -1
- package/template/wall-e/eval/benchmarks/coding-agent.json +0 -1581
- package/template/wall-e/eval/benchmarks/coding.json +0 -122
- package/template/wall-e/eval/benchmarks/memory-retrieval.json +0 -234
- package/template/wall-e/eval/benchmarks/reasoning.json +0 -82
- package/template/wall-e/eval/benchmarks/swebench-lite-30.json +0 -212
- package/template/wall-e/eval/benchmarks.js +0 -669
- package/template/wall-e/eval/cc-replay.js +0 -719
- package/template/wall-e/eval/chat-eval.js +0 -525
- package/template/wall-e/eval/check-keys.js +0 -15
- package/template/wall-e/eval/check-providers.js +0 -42
- package/template/wall-e/eval/codex-cli-baseline.js +0 -669
- package/template/wall-e/eval/coding-agent-real.js +0 -570
- package/template/wall-e/eval/context-compactor.js +0 -251
- package/template/wall-e/eval/debug-agent003.js +0 -68
- package/template/wall-e/eval/diagnostics.js +0 -216
- package/template/wall-e/eval/eval-orchestrator.js +0 -642
- package/template/wall-e/eval/evaluate.js +0 -202
- package/template/wall-e/eval/evaluator.js +0 -373
- package/template/wall-e/eval/exporter.js +0 -212
- package/template/wall-e/eval/fixtures/express-basic/package.json +0 -9
- package/template/wall-e/eval/fixtures/express-basic/server.js +0 -115
- package/template/wall-e/eval/fixtures/express-basic/test.js +0 -83
- package/template/wall-e/eval/fixtures/express-buggy/package.json +0 -9
- package/template/wall-e/eval/fixtures/express-buggy/server.js +0 -113
- package/template/wall-e/eval/fixtures/express-buggy/test.js +0 -83
- package/template/wall-e/eval/fixtures/express-buggy-items/package.json +0 -9
- package/template/wall-e/eval/fixtures/express-buggy-items/server.js +0 -112
- package/template/wall-e/eval/fixtures/express-buggy-items/test.js +0 -83
- package/template/wall-e/eval/fixtures/express-buggy-search/package.json +0 -9
- package/template/wall-e/eval/fixtures/express-buggy-search/server.js +0 -121
- package/template/wall-e/eval/fixtures/express-buggy-search/test.js +0 -83
- package/template/wall-e/eval/fixtures/express-rename-data/data.js +0 -34
- package/template/wall-e/eval/fixtures/express-rename-data/package.json +0 -9
- package/template/wall-e/eval/fixtures/express-rename-data/server.js +0 -97
- package/template/wall-e/eval/fixtures/express-rename-data/test.js +0 -88
- package/template/wall-e/eval/fixtures/express-xss/package.json +0 -12
- package/template/wall-e/eval/fixtures/express-xss/server.js +0 -90
- package/template/wall-e/eval/fixtures/express-xss/test.js +0 -67
- package/template/wall-e/eval/fixtures/express-xss/views/profile.ejs +0 -9
- package/template/wall-e/eval/fixtures/fullstack-app/config/default.js +0 -9
- package/template/wall-e/eval/fixtures/fullstack-app/config/test.js +0 -13
- package/template/wall-e/eval/fixtures/fullstack-app/package.json +0 -11
- package/template/wall-e/eval/fixtures/fullstack-app/public/css/style.css +0 -137
- package/template/wall-e/eval/fixtures/fullstack-app/public/index.html +0 -46
- package/template/wall-e/eval/fixtures/fullstack-app/public/js/app.js +0 -121
- package/template/wall-e/eval/fixtures/fullstack-app/public/js/auth.js +0 -71
- package/template/wall-e/eval/fixtures/fullstack-app/public/js/items.js +0 -80
- package/template/wall-e/eval/fixtures/fullstack-app/public/js/users.js +0 -46
- package/template/wall-e/eval/fixtures/fullstack-app/public/login.html +0 -45
- package/template/wall-e/eval/fixtures/fullstack-app/public/register.html +0 -38
- package/template/wall-e/eval/fixtures/fullstack-app/scripts/migrate.js +0 -23
- package/template/wall-e/eval/fixtures/fullstack-app/scripts/seed.js +0 -46
- package/template/wall-e/eval/fixtures/fullstack-app/server/db.js +0 -99
- package/template/wall-e/eval/fixtures/fullstack-app/server/index.js +0 -94
- package/template/wall-e/eval/fixtures/fullstack-app/server/middleware/auth.js +0 -19
- package/template/wall-e/eval/fixtures/fullstack-app/server/middleware/logger.js +0 -19
- package/template/wall-e/eval/fixtures/fullstack-app/server/router.js +0 -50
- package/template/wall-e/eval/fixtures/fullstack-app/server/routes/auth.js +0 -69
- package/template/wall-e/eval/fixtures/fullstack-app/server/routes/health.js +0 -23
- package/template/wall-e/eval/fixtures/fullstack-app/server/routes/items.js +0 -88
- package/template/wall-e/eval/fixtures/fullstack-app/server/routes/users.js +0 -75
- package/template/wall-e/eval/fixtures/fullstack-app/server/test.js +0 -198
- package/template/wall-e/eval/fixtures/fullstack-app/server/utils/response.js +0 -34
- package/template/wall-e/eval/fixtures/fullstack-app/server/utils/validate.js +0 -26
- package/template/wall-e/eval/fixtures/fullstack-app/server.js +0 -8
- package/template/wall-e/eval/fixtures/fullstack-app/test.js +0 -12
- package/template/wall-e/eval/fixtures/monorepo-basic/package.json +0 -8
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/data.js +0 -58
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/middleware.js +0 -46
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/package.json +0 -8
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/routes.js +0 -64
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/server.js +0 -56
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/api/test.js +0 -116
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/cli/commands.js +0 -61
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/cli/index.js +0 -62
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/cli/output.js +0 -43
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/cli/package.json +0 -11
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/cli/test.js +0 -44
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/shared/formatters.js +0 -43
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/shared/index.js +0 -12
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/shared/package.json +0 -5
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/shared/test.js +0 -55
- package/template/wall-e/eval/fixtures/monorepo-basic/packages/shared/validators.js +0 -29
- package/template/wall-e/eval/fixtures/monorepo-basic/test.js +0 -46
- package/template/wall-e/eval/fixtures/node-cli/index.js +0 -78
- package/template/wall-e/eval/fixtures/node-cli/package.json +0 -10
- package/template/wall-e/eval/fixtures/node-cli/test.js +0 -57
- package/template/wall-e/eval/fixtures/node-typed/package.json +0 -8
- package/template/wall-e/eval/fixtures/node-typed/src/handlers.js +0 -31
- package/template/wall-e/eval/fixtures/node-typed/src/utils.js +0 -33
- package/template/wall-e/eval/fixtures/node-typed/test.js +0 -36
- package/template/wall-e/eval/fixtures/python-flask/app.py +0 -14
- package/template/wall-e/eval/fixtures/python-flask/requirements.txt +0 -2
- package/template/wall-e/eval/fixtures/python-flask/test_app.py +0 -25
- package/template/wall-e/eval/fixtures/wall-e-subset/brain.js +0 -105
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/aggregator.js +0 -101
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/benchmarks/chat.json +0 -20
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/benchmarks/coding.json +0 -32
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/benchmarks.js +0 -64
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/fixtures/simple-project/package.json +0 -6
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/fixtures/simple-project/server.js +0 -31
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/fixtures/simple-project/test.js +0 -18
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/fixtures/simple-project/utils.js +0 -34
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/runner.js +0 -104
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/scorer.js +0 -73
- package/template/wall-e/eval/fixtures/wall-e-subset/eval/test.js +0 -134
- package/template/wall-e/eval/fixtures/wall-e-subset/llm/client.js +0 -99
- package/template/wall-e/eval/fixtures/wall-e-subset/llm/providers.js +0 -63
- package/template/wall-e/eval/fixtures/wall-e-subset/llm/test.js +0 -70
- package/template/wall-e/eval/fixtures/wall-e-subset/package.json +0 -10
- package/template/wall-e/eval/fixtures/wall-e-subset/test.js +0 -86
- package/template/wall-e/eval/harvester.js +0 -685
- package/template/wall-e/eval/head-to-head.js +0 -388
- package/template/wall-e/eval/humaneval-adapter.js +0 -321
- package/template/wall-e/eval/list-models.js +0 -31
- package/template/wall-e/eval/livecodebench-adapter.js +0 -291
- package/template/wall-e/eval/mail-integration.js +0 -443
- package/template/wall-e/eval/manifest.js +0 -186
- package/template/wall-e/eval/meta-harness/adapters/coding-agent.js +0 -57
- package/template/wall-e/eval/meta-harness/bootstrap-snapshot.js +0 -149
- package/template/wall-e/eval/meta-harness/candidate-store.js +0 -117
- package/template/wall-e/eval/meta-harness/cli.js +0 -86
- package/template/wall-e/eval/meta-harness/domain-spec.js +0 -154
- package/template/wall-e/eval/meta-harness/domains/coding-agent.domain.json +0 -84
- package/template/wall-e/eval/meta-harness/examples/env-bootstrap-candidate.js +0 -29
- package/template/wall-e/eval/meta-harness/experience-store.js +0 -174
- package/template/wall-e/eval/meta-harness/frontier.js +0 -96
- package/template/wall-e/eval/meta-harness/harness-interface.js +0 -90
- package/template/wall-e/eval/meta-harness/leakage-guard.js +0 -80
- package/template/wall-e/eval/meta-harness/optimizer.js +0 -207
- package/template/wall-e/eval/meta-harness/proposer-runner.js +0 -110
- package/template/wall-e/eval/meta-harness/reporting.js +0 -58
- package/template/wall-e/eval/meta-harness/telemetry.js +0 -27
- package/template/wall-e/eval/meta-harness/validation.js +0 -81
- package/template/wall-e/eval/promoter.js +0 -228
- package/template/wall-e/eval/provider-normalizer.js +0 -33
- package/template/wall-e/eval/replay.js +0 -395
- package/template/wall-e/eval/run-agent-benchmarks.js +0 -386
- package/template/wall-e/eval/run-codex-cli-baseline.js +0 -177
- package/template/wall-e/eval/run-coding-agent-real.js +0 -187
- package/template/wall-e/eval/run-eval.js +0 -435
- package/template/wall-e/eval/run-model-comparison.js +0 -142
- package/template/wall-e/eval/session-evaluator.js +0 -187
- package/template/wall-e/eval/session-miner.js +0 -207
- package/template/wall-e/eval/session-retrieval-benchmark.js +0 -150
- package/template/wall-e/eval/session-transcripts.js +0 -509
- package/template/wall-e/eval/shadow.js +0 -161
- package/template/wall-e/eval/swebench-adapter.js +0 -345
- package/template/wall-e/eval/swebench-docker.js +0 -192
- package/template/wall-e/eval/train.py +0 -320
- package/template/wall-e/eval/trainer.js +0 -232
- package/template/wall-e/eval/weekly-eval-loop.js +0 -241
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "coding-001",
|
|
4
|
-
"prompt": "Write a JavaScript function called `debounce` that takes a function and a delay in milliseconds, and returns a debounced version that delays invocation until after the delay has elapsed since the last call.",
|
|
5
|
-
"taskType": "coding",
|
|
6
|
-
"difficulty": "easy",
|
|
7
|
-
"expectedTraits": ["has code block", "defines function", "uses setTimeout", "uses clearTimeout"],
|
|
8
|
-
"tags": ["js", "utility"]
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"id": "coding-002",
|
|
12
|
-
"prompt": "Write a Python function that reads a CSV file and returns a list of dictionaries, where each dictionary maps column headers to row values.",
|
|
13
|
-
"taskType": "coding",
|
|
14
|
-
"difficulty": "easy",
|
|
15
|
-
"expectedTraits": ["has code block", "uses csv module", "returns list", "handles headers"],
|
|
16
|
-
"tags": ["python", "file-io"]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": "coding-003",
|
|
20
|
-
"prompt": "Write a JavaScript async function called `fetchWithRetry` that fetches a URL and retries up to 3 times with exponential backoff if the request fails.",
|
|
21
|
-
"taskType": "coding",
|
|
22
|
-
"difficulty": "easy",
|
|
23
|
-
"expectedTraits": ["has code block", "uses async/await", "has retry logic", "has backoff"],
|
|
24
|
-
"tags": ["js", "async", "networking"]
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": "coding-004",
|
|
28
|
-
"prompt": "Implement a function in JavaScript that finds the longest common subsequence (LCS) of two strings. Return the length of the LCS.",
|
|
29
|
-
"taskType": "coding",
|
|
30
|
-
"difficulty": "medium",
|
|
31
|
-
"expectedTraits": ["has code block", "uses dynamic programming", "handles empty strings", "returns number"],
|
|
32
|
-
"tags": ["js", "algorithm", "dynamic-programming"]
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"id": "coding-005",
|
|
36
|
-
"prompt": "Write a Python function that implements a binary search on a sorted list and returns the index of the target element, or -1 if not found.",
|
|
37
|
-
"taskType": "coding",
|
|
38
|
-
"difficulty": "medium",
|
|
39
|
-
"expectedTraits": ["has code block", "uses binary search", "handles not found", "defines function"],
|
|
40
|
-
"tags": ["python", "algorithm", "search"]
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "coding-006",
|
|
44
|
-
"prompt": "The following JavaScript code throws 'Cannot read property of undefined' intermittently. Debug and fix it:\n\n```js\nasync function getUserPosts(userId) {\n const response = await fetch(`/api/users/${userId}`);\n const user = await response.json();\n return user.posts.map(p => p.title);\n}\n```",
|
|
45
|
-
"taskType": "coding",
|
|
46
|
-
"difficulty": "medium",
|
|
47
|
-
"expectedTraits": ["identifies null check missing", "adds optional chaining or guard", "checks response status", "has code block"],
|
|
48
|
-
"tags": ["js", "debugging", "async"]
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"id": "coding-007",
|
|
52
|
-
"prompt": "Debug this Python code that should flatten a nested list but produces incorrect output:\n\n```python\ndef flatten(lst):\n result = []\n for item in lst:\n if isinstance(item, list):\n flatten(item)\n else:\n result.append(item)\n return result\n```",
|
|
53
|
-
"taskType": "coding",
|
|
54
|
-
"difficulty": "medium",
|
|
55
|
-
"expectedTraits": ["identifies missing extend/concatenation", "fixes recursive call", "has code block", "explains the bug"],
|
|
56
|
-
"tags": ["python", "debugging", "recursion"]
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"id": "coding-008",
|
|
60
|
-
"prompt": "Write a JavaScript implementation of a simple LRU (Least Recently Used) cache with `get(key)` and `put(key, value)` methods and a configurable max capacity.",
|
|
61
|
-
"taskType": "coding",
|
|
62
|
-
"difficulty": "medium",
|
|
63
|
-
"expectedTraits": ["has code block", "uses Map or linked list", "implements eviction", "has get and put methods"],
|
|
64
|
-
"tags": ["js", "data-structure", "algorithm"]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": "coding-009",
|
|
68
|
-
"prompt": "Write a Python decorator called `@rate_limit(max_calls, period)` that limits how many times a function can be called within a given time period in seconds. Raise an exception if the limit is exceeded.",
|
|
69
|
-
"taskType": "coding",
|
|
70
|
-
"difficulty": "medium",
|
|
71
|
-
"expectedTraits": ["has code block", "uses decorator pattern", "tracks timestamps", "raises exception"],
|
|
72
|
-
"tags": ["python", "decorator", "rate-limiting"]
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"id": "coding-010",
|
|
76
|
-
"prompt": "Implement a JavaScript function that deep-merges two objects. Arrays should be concatenated, nested objects should be recursively merged, and primitive values from the second object should override the first.",
|
|
77
|
-
"taskType": "coding",
|
|
78
|
-
"difficulty": "medium",
|
|
79
|
-
"expectedTraits": ["has code block", "handles arrays", "handles nested objects", "handles primitives"],
|
|
80
|
-
"tags": ["js", "utility", "recursion"]
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"id": "coding-011",
|
|
84
|
-
"prompt": "Refactor this Express.js route handler to use proper error handling, input validation, and separation of concerns. It currently does everything inline:\n\n```js\napp.post('/api/orders', async (req, res) => {\n const { userId, items, address } = req.body;\n const user = await db.query('SELECT * FROM users WHERE id = ?', [userId]);\n if (!user) return res.status(404).json({ error: 'User not found' });\n let total = 0;\n for (const item of items) {\n const product = await db.query('SELECT * FROM products WHERE id = ?', [item.productId]);\n total += product.price * item.quantity;\n }\n const order = await db.query('INSERT INTO orders (user_id, total, address) VALUES (?, ?, ?)', [userId, total, address]);\n res.json({ orderId: order.insertId, total });\n});\n```",
|
|
85
|
-
"taskType": "coding",
|
|
86
|
-
"difficulty": "hard",
|
|
87
|
-
"expectedTraits": ["separates validation", "extracts service layer", "adds try-catch", "has code block", "improves structure"],
|
|
88
|
-
"tags": ["js", "refactoring", "express", "architecture"]
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"id": "coding-012",
|
|
92
|
-
"prompt": "Design and implement a simple event emitter in JavaScript that supports `on(event, listener)`, `off(event, listener)`, `once(event, listener)`, and `emit(event, ...args)`. Include proper memory leak prevention.",
|
|
93
|
-
"taskType": "coding",
|
|
94
|
-
"difficulty": "hard",
|
|
95
|
-
"expectedTraits": ["has code block", "implements all four methods", "handles once correctly", "mentions max listeners or cleanup"],
|
|
96
|
-
"tags": ["js", "design-pattern", "event-driven"]
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"id": "coding-013",
|
|
100
|
-
"prompt": "Design a rate-limited async task queue in JavaScript that: processes tasks concurrently up to a configurable limit, supports priority levels, and allows cancellation of pending tasks. Provide the implementation with JSDoc comments.",
|
|
101
|
-
"taskType": "coding",
|
|
102
|
-
"difficulty": "hard",
|
|
103
|
-
"expectedTraits": ["has code block", "has concurrency limit", "has priority support", "has cancellation", "has jsdoc"],
|
|
104
|
-
"tags": ["js", "async", "architecture", "queue"]
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
"id": "coding-014",
|
|
108
|
-
"prompt": "Implement a Python context manager that provides database transaction management with automatic rollback on exceptions, savepoint support for nested transactions, and connection pooling awareness.",
|
|
109
|
-
"taskType": "coding",
|
|
110
|
-
"difficulty": "hard",
|
|
111
|
-
"expectedTraits": ["has code block", "uses context manager", "handles rollback", "supports nesting"],
|
|
112
|
-
"tags": ["python", "database", "architecture"]
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"id": "coding-015",
|
|
116
|
-
"prompt": "You have a Node.js application that is leaking memory in production. The heap grows by ~50MB/hour. The app uses Express, processes webhooks, and caches results in a plain object. Walk through a systematic debugging approach and suggest code fixes for common causes.",
|
|
117
|
-
"taskType": "coding",
|
|
118
|
-
"difficulty": "hard",
|
|
119
|
-
"expectedTraits": ["mentions heap snapshots", "identifies unbounded cache", "suggests WeakMap or LRU", "mentions event listener leaks", "has code block"],
|
|
120
|
-
"tags": ["js", "debugging", "performance", "node"]
|
|
121
|
-
}
|
|
122
|
-
]
|
|
@@ -1,234 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "session-recall-001",
|
|
4
|
-
"prompt": "Use Wall-E memory to answer: in the prior Codex parser session, which file was changed and what test command proved the fix?",
|
|
5
|
-
"taskType": "memory-retrieval",
|
|
6
|
-
"difficulty": "medium",
|
|
7
|
-
"expectedTraits": ["searches session memory", "mentions parser.js", "mentions node --test", "cites session id"],
|
|
8
|
-
"tags": ["session-recall", "coding", "sanitized-real-shape"],
|
|
9
|
-
"retrieval": {
|
|
10
|
-
"query": "parser src/parser.js node",
|
|
11
|
-
"expectedSourceIds": ["codex:sanitized-parser"],
|
|
12
|
-
"expectedSnippets": ["src/parser.js", "node --test tests/parser.test.js"],
|
|
13
|
-
"seedMemories": [
|
|
14
|
-
{
|
|
15
|
-
"source": "codex-jsonl",
|
|
16
|
-
"source_id": "codex:sanitized-parser:exchange:1",
|
|
17
|
-
"memory_type": "coding_session_exchange",
|
|
18
|
-
"timestamp": "2026-04-28T09:15:00.000Z",
|
|
19
|
-
"cwd": "/repo/app",
|
|
20
|
-
"content": "Q: Fix the parser crash when quoted values include commas.\nA: Decision: keep the tokenizer stateful instead of adding a regex split. Files: src/parser.js, tests/parser.test.js. Command: node --test tests/parser.test.js passed.",
|
|
21
|
-
"metadata": {
|
|
22
|
-
"sourceId": "codex:sanitized-parser",
|
|
23
|
-
"cwd": "/repo/app",
|
|
24
|
-
"gitBranch": "fix/parser-quoted-values",
|
|
25
|
-
"filesEdited": ["src/parser.js", "tests/parser.test.js"],
|
|
26
|
-
"commands": ["node --test tests/parser.test.js"]
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
]
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"id": "session-recall-002",
|
|
34
|
-
"prompt": "Use Wall-E memory to answer: why did the prior Claude session reject the batch write approach for the queue worker?",
|
|
35
|
-
"taskType": "memory-retrieval",
|
|
36
|
-
"difficulty": "medium",
|
|
37
|
-
"expectedTraits": ["searches session memory", "mentions lock contention", "mentions queue-worker.js", "cites session id"],
|
|
38
|
-
"tags": ["decision", "failure", "sanitized-real-shape"],
|
|
39
|
-
"retrieval": {
|
|
40
|
-
"query": "queue worker lock contention",
|
|
41
|
-
"expectedSourceIds": ["claude:sanitized-queue"],
|
|
42
|
-
"expectedSnippets": ["lock contention", "queue-worker.js"],
|
|
43
|
-
"seedMemories": [
|
|
44
|
-
{
|
|
45
|
-
"source": "claude-code-jsonl",
|
|
46
|
-
"source_id": "claude:sanitized-queue:exchange:4",
|
|
47
|
-
"memory_type": "coding_session_exchange",
|
|
48
|
-
"timestamp": "2026-04-27T17:22:00.000Z",
|
|
49
|
-
"cwd": "/repo/service",
|
|
50
|
-
"content": "Q: Speed up queue persistence.\nA: Blocker: batch writes increased SQLite lock contention under concurrent workers. Decision: keep single-row retry with jitter. Files: workers/queue-worker.js, tests/queue-worker.test.js. Command: npm test -- queue-worker passed.",
|
|
51
|
-
"metadata": {
|
|
52
|
-
"sourceId": "claude:sanitized-queue",
|
|
53
|
-
"cwd": "/repo/service",
|
|
54
|
-
"gitBranch": "fix/queue-locking",
|
|
55
|
-
"filesEdited": ["workers/queue-worker.js", "tests/queue-worker.test.js"],
|
|
56
|
-
"commands": ["npm test -- queue-worker"]
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
]
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "session-recall-003",
|
|
64
|
-
"prompt": "Use Wall-E memory to answer: which browser test covered the transcript blank-space regression?",
|
|
65
|
-
"taskType": "memory-retrieval",
|
|
66
|
-
"difficulty": "medium",
|
|
67
|
-
"expectedTraits": ["searches session memory", "mentions codex-blank-space.spec.js", "mentions blank gap", "cites session id"],
|
|
68
|
-
"tags": ["ui-regression", "browser-test", "sanitized-real-shape"],
|
|
69
|
-
"retrieval": {
|
|
70
|
-
"query": "blank-gap codex-blank-space.spec.js",
|
|
71
|
-
"expectedSourceIds": ["walle:sanitized-terminal-ui"],
|
|
72
|
-
"expectedSnippets": ["codex-blank-space.spec.js", "completed-turn blank-gap compaction"],
|
|
73
|
-
"seedMemories": [
|
|
74
|
-
{
|
|
75
|
-
"source": "walle-jsonl",
|
|
76
|
-
"source_id": "walle:sanitized-terminal-ui:assistant:12",
|
|
77
|
-
"memory_type": "coding_session_assistant_message",
|
|
78
|
-
"timestamp": "2026-04-29T11:05:00.000Z",
|
|
79
|
-
"cwd": "/repo/tools",
|
|
80
|
-
"content": "Decision: fix completed-turn blank-gap compaction in the Codex terminal renderer. Files: claude-task-manager/public/session-stream.js, claude-task-manager/tests/codex-blank-space.spec.js. Command: npx playwright test claude-task-manager/tests/codex-blank-space.spec.js passed.",
|
|
81
|
-
"metadata": {
|
|
82
|
-
"sourceId": "walle:sanitized-terminal-ui",
|
|
83
|
-
"cwd": "/repo/tools",
|
|
84
|
-
"gitBranch": "fix/codex-terminal-blank-gap",
|
|
85
|
-
"filesEdited": ["claude-task-manager/public/session-stream.js", "claude-task-manager/tests/codex-blank-space.spec.js"],
|
|
86
|
-
"commands": ["npx playwright test claude-task-manager/tests/codex-blank-space.spec.js"]
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"id": "session-recall-004",
|
|
94
|
-
"prompt": "Use Wall-E memory to answer: what was the next step after the model routing quorum session?",
|
|
95
|
-
"taskType": "memory-retrieval",
|
|
96
|
-
"difficulty": "hard",
|
|
97
|
-
"expectedTraits": ["searches diary", "mentions router inputs", "mentions evaluation", "cites diary/session id"],
|
|
98
|
-
"tags": ["diary", "handoff", "sanitized-real-shape"],
|
|
99
|
-
"retrieval": {
|
|
100
|
-
"query": "model routing quorum next step router inputs evaluation diary",
|
|
101
|
-
"expectedSourceIds": ["diary:walle:sanitized-quorum:stop"],
|
|
102
|
-
"expectedSnippets": ["feed quorum results into routing", "run trusted evaluation"],
|
|
103
|
-
"seedMemories": [
|
|
104
|
-
{
|
|
105
|
-
"source": "walle-diary",
|
|
106
|
-
"source_id": "diary:walle:sanitized-quorum:stop",
|
|
107
|
-
"memory_type": "agent_diary",
|
|
108
|
-
"timestamp": "2026-04-26T20:30:00.000Z",
|
|
109
|
-
"cwd": "/repo/tools",
|
|
110
|
-
"content": "Agent diary for walle session sanitized-quorum (stop)\nSummary: feed quorum results into routing instead of leaving them as a side report.\nChanged files: wall-e/evaluation/coding-quorum.js; wall-e/routing/model-router.js\nDecisions: use reviewer/quorum/security data as router inputs.\nNext steps: run trusted evaluation on coding-agent-real cases.",
|
|
111
|
-
"metadata": {
|
|
112
|
-
"sourceId": "diary:walle:sanitized-quorum:stop",
|
|
113
|
-
"sessionId": "sanitized-quorum",
|
|
114
|
-
"agent": "walle",
|
|
115
|
-
"event": "stop",
|
|
116
|
-
"cwd": "/repo/tools",
|
|
117
|
-
"changed_files": ["wall-e/evaluation/coding-quorum.js", "wall-e/routing/model-router.js"],
|
|
118
|
-
"next_steps": ["run trusted evaluation on coding-agent-real cases"]
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
]
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"id": "session-recall-005",
|
|
126
|
-
"prompt": "Use Wall-E memory to answer: which source adapter handled Gemini JSONL and what privacy class did it use?",
|
|
127
|
-
"taskType": "memory-retrieval",
|
|
128
|
-
"difficulty": "medium",
|
|
129
|
-
"expectedTraits": ["searches session memory", "mentions gemini-jsonl", "mentions pii_potential", "cites session id"],
|
|
130
|
-
"tags": ["source-adapter", "privacy", "sanitized-real-shape"],
|
|
131
|
-
"retrieval": {
|
|
132
|
-
"query": "Gemini JSONL source adapter privacy class pii_potential",
|
|
133
|
-
"expectedSourceIds": ["codex:sanitized-source-adapters"],
|
|
134
|
-
"expectedSnippets": ["gemini-jsonl", "pii_potential"],
|
|
135
|
-
"seedMemories": [
|
|
136
|
-
{
|
|
137
|
-
"source": "codex-jsonl",
|
|
138
|
-
"source_id": "codex:sanitized-source-adapters:assistant:8",
|
|
139
|
-
"memory_type": "coding_session_assistant_message",
|
|
140
|
-
"timestamp": "2026-04-29T14:02:00.000Z",
|
|
141
|
-
"cwd": "/repo/tools",
|
|
142
|
-
"content": "Decision: register claude-code-jsonl, codex-jsonl, gemini-jsonl, and walle-jsonl as first-party source adapters. The default privacy class for coding session adapters is pii_potential because local transcripts can include personal context.",
|
|
143
|
-
"metadata": {
|
|
144
|
-
"sourceId": "codex:sanitized-source-adapters",
|
|
145
|
-
"cwd": "/repo/tools",
|
|
146
|
-
"filesEdited": ["wall-e/sources/gemini-jsonl.js", "wall-e/sources/builtin.js"]
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
]
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
"id": "session-recall-006",
|
|
154
|
-
"prompt": "Use Wall-E memory to answer honestly: do we have a remembered decision about replacing SQLite with ChromaDB?",
|
|
155
|
-
"taskType": "memory-retrieval",
|
|
156
|
-
"difficulty": "hard",
|
|
157
|
-
"expectedTraits": ["searches session memory", "says do not replace SQLite", "mentions sqlite-vec", "does not hallucinate approval"],
|
|
158
|
-
"tags": ["negative-recall", "architecture", "sanitized-real-shape"],
|
|
159
|
-
"retrieval": {
|
|
160
|
-
"query": "replace SQLite with ChromaDB sqlite-vec decision",
|
|
161
|
-
"expectedSourceIds": ["claude:sanitized-memory-architecture"],
|
|
162
|
-
"expectedSnippets": ["Keep SQLite plus sqlite-vec", "Do not adopt ChromaDB"],
|
|
163
|
-
"seedMemories": [
|
|
164
|
-
{
|
|
165
|
-
"source": "claude-code-jsonl",
|
|
166
|
-
"source_id": "claude:sanitized-memory-architecture:exchange:2",
|
|
167
|
-
"memory_type": "coding_session_exchange",
|
|
168
|
-
"timestamp": "2026-04-29T13:45:00.000Z",
|
|
169
|
-
"cwd": "/repo/tools",
|
|
170
|
-
"content": "Q: Should Wall-E adopt ChromaDB from the reference project?\nA: Decision: Keep SQLite plus sqlite-vec. Do not adopt ChromaDB; port the source-adapter semantics and retrieval tests instead.",
|
|
171
|
-
"metadata": {
|
|
172
|
-
"sourceId": "claude:sanitized-memory-architecture",
|
|
173
|
-
"cwd": "/repo/tools",
|
|
174
|
-
"gitBranch": "feat/session-memory-protocol"
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
]
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"id": "profile-recall-001",
|
|
182
|
-
"prompt": "Use Wall-E memory to answer: what is the user's communication style and how should an agent adapt?",
|
|
183
|
-
"taskType": "memory-retrieval",
|
|
184
|
-
"difficulty": "medium",
|
|
185
|
-
"expectedTraits": ["uses Wall-E memory", "mentions direct", "mentions evidence", "mentions thorough verification"],
|
|
186
|
-
"tags": ["self-profile", "communication-style", "digital-twin"],
|
|
187
|
-
"retrieval": {
|
|
188
|
-
"query": "communication style direct evidence verification",
|
|
189
|
-
"expectedSourceIds": ["profile:sanitized-style"],
|
|
190
|
-
"expectedSnippets": ["direct", "evidence", "thorough verification"],
|
|
191
|
-
"seedMemories": [
|
|
192
|
-
{
|
|
193
|
-
"source": "ctm",
|
|
194
|
-
"source_id": "profile:sanitized-style",
|
|
195
|
-
"memory_type": "coding_session_user_message",
|
|
196
|
-
"timestamp": "2026-05-02T12:00:00.000Z",
|
|
197
|
-
"cwd": "/repo/tools",
|
|
198
|
-
"content": "The user's communication style is direct and evidence-based. They prefer thorough verification, concrete dates, clear tradeoffs, and concise summaries after implementation.",
|
|
199
|
-
"metadata": {
|
|
200
|
-
"sourceId": "profile:sanitized-style",
|
|
201
|
-
"cwd": "/repo/tools"
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
]
|
|
205
|
-
}
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
"id": "person-recall-001",
|
|
209
|
-
"prompt": "Use Wall-E memory before public web: do you know Casey Example?",
|
|
210
|
-
"taskType": "memory-retrieval",
|
|
211
|
-
"difficulty": "medium",
|
|
212
|
-
"expectedTraits": ["uses Wall-E memory", "does not search public web first", "mentions colleague context", "cites memory evidence"],
|
|
213
|
-
"tags": ["person-lookup", "private-context", "digital-twin"],
|
|
214
|
-
"retrieval": {
|
|
215
|
-
"query": "Casey Example colleague planning strategy",
|
|
216
|
-
"expectedSourceIds": ["person:sanitized-casey"],
|
|
217
|
-
"expectedSnippets": ["Casey Example", "colleague", "planning"],
|
|
218
|
-
"seedMemories": [
|
|
219
|
-
{
|
|
220
|
-
"source": "slack",
|
|
221
|
-
"source_id": "person:sanitized-casey",
|
|
222
|
-
"memory_type": "message",
|
|
223
|
-
"timestamp": "2026-03-24T17:16:00.000Z",
|
|
224
|
-
"cwd": "/repo/tools",
|
|
225
|
-
"content": "Casey Example appears in the user's work context as a colleague involved in planning, team strategy, and prioritization discussions.",
|
|
226
|
-
"metadata": {
|
|
227
|
-
"sourceId": "person:sanitized-casey",
|
|
228
|
-
"privacy": "sanitized"
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
]
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
]
|
|
@@ -1,82 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "reasoning-001",
|
|
4
|
-
"prompt": "I need to choose between PostgreSQL and MongoDB for a new e-commerce application. The app will have complex product relationships, user reviews, and order history. What should I consider?",
|
|
5
|
-
"taskType": "reasoning",
|
|
6
|
-
"difficulty": "medium",
|
|
7
|
-
"expectedTraits": ["multiple options considered", "pros and cons", "considers use case fit", "conclusion"],
|
|
8
|
-
"tags": ["database", "architecture", "trade-offs"]
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
"id": "reasoning-002",
|
|
12
|
-
"prompt": "Our team of 5 developers needs to decide between monorepo and polyrepo for our microservices. We have 8 services, shared libraries, and deploy independently. Walk me through the decision.",
|
|
13
|
-
"taskType": "reasoning",
|
|
14
|
-
"difficulty": "medium",
|
|
15
|
-
"expectedTraits": ["multiple options considered", "pros and cons", "considers team size", "numbered steps", "conclusion"],
|
|
16
|
-
"tags": ["architecture", "devops", "trade-offs"]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"id": "reasoning-003",
|
|
20
|
-
"prompt": "A farmer needs to get a fox, a chicken, and a bag of grain across a river. The boat only holds the farmer and one item. The fox will eat the chicken if left alone, and the chicken will eat the grain if left alone. How does the farmer do it?",
|
|
21
|
-
"taskType": "reasoning",
|
|
22
|
-
"difficulty": "easy",
|
|
23
|
-
"expectedTraits": ["numbered steps", "correct solution", "explains constraints", "step-by-step"],
|
|
24
|
-
"tags": ["logic-puzzle", "classic"]
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"id": "reasoning-004",
|
|
28
|
-
"prompt": "We're experiencing intermittent 502 errors on our production API. The errors happen about 5% of the time, seem random, and started after a deployment last week. Outline a systematic debugging approach.",
|
|
29
|
-
"taskType": "reasoning",
|
|
30
|
-
"difficulty": "medium",
|
|
31
|
-
"expectedTraits": ["numbered steps", "checks logs first", "considers deployment changes", "systematic approach", "mentions monitoring"],
|
|
32
|
-
"tags": ["debugging", "ops", "systematic"]
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"id": "reasoning-005",
|
|
36
|
-
"prompt": "If all roses are flowers, and some flowers fade quickly, can we conclude that some roses fade quickly? Explain your reasoning step by step.",
|
|
37
|
-
"taskType": "reasoning",
|
|
38
|
-
"difficulty": "medium",
|
|
39
|
-
"expectedTraits": ["identifies logical fallacy", "step-by-step", "correct conclusion", "explains why"],
|
|
40
|
-
"tags": ["logic", "syllogism"]
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"id": "reasoning-006",
|
|
44
|
-
"prompt": "Plan a migration strategy for moving a legacy PHP monolith to Node.js microservices. The monolith serves 10K RPM, has a MySQL database, and the team has 3 months. What's your phased approach?",
|
|
45
|
-
"taskType": "reasoning",
|
|
46
|
-
"difficulty": "hard",
|
|
47
|
-
"expectedTraits": ["numbered steps", "phased approach", "considers risk", "mentions strangler pattern", "realistic timeline"],
|
|
48
|
-
"tags": ["migration", "architecture", "planning"]
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"id": "reasoning-007",
|
|
52
|
-
"prompt": "You have $10,000 to invest and want to balance growth with safety. You're 30 years old with stable income. Compare investing in index funds, individual stocks, bonds, and real estate REITs. What allocation would you recommend and why?",
|
|
53
|
-
"taskType": "reasoning",
|
|
54
|
-
"difficulty": "hard",
|
|
55
|
-
"expectedTraits": ["multiple options considered", "pros and cons", "considers age and risk", "specific allocation", "conclusion"],
|
|
56
|
-
"tags": ["finance", "decision-making", "trade-offs"]
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"id": "reasoning-008",
|
|
60
|
-
"prompt": "Three switches in one room control three light bulbs in another room. You can only go to the bulb room once. How do you figure out which switch controls which bulb?",
|
|
61
|
-
"taskType": "reasoning",
|
|
62
|
-
"difficulty": "easy",
|
|
63
|
-
"expectedTraits": ["correct solution", "uses heat trick", "numbered steps", "explains logic"],
|
|
64
|
-
"tags": ["logic-puzzle", "classic"]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"id": "reasoning-009",
|
|
68
|
-
"prompt": "Our startup needs to decide between building our own authentication system vs using Auth0 vs Firebase Auth. We have 2 developers, expect to reach 50K users in year one, and need SSO support for enterprise clients. Analyze the options.",
|
|
69
|
-
"taskType": "reasoning",
|
|
70
|
-
"difficulty": "medium",
|
|
71
|
-
"expectedTraits": ["multiple options considered", "pros and cons", "considers team size", "considers scale", "conclusion"],
|
|
72
|
-
"tags": ["architecture", "build-vs-buy", "trade-offs"]
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"id": "reasoning-010",
|
|
76
|
-
"prompt": "A company has 100 employees. 60% use Mac, 50% use Chrome, and 30% use both Mac and Chrome. If you pick a random employee, what is the probability they use neither Mac nor Chrome? Show your work.",
|
|
77
|
-
"taskType": "reasoning",
|
|
78
|
-
"difficulty": "medium",
|
|
79
|
-
"expectedTraits": ["shows calculation", "uses inclusion-exclusion", "correct answer", "step-by-step"],
|
|
80
|
-
"tags": ["math", "probability", "set-theory"]
|
|
81
|
-
}
|
|
82
|
-
]
|
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"instance_id": "django__django-11099",
|
|
4
|
-
"repo": "django/django",
|
|
5
|
-
"difficulty": "easy",
|
|
6
|
-
"category": "bug-fix",
|
|
7
|
-
"description": "UsernameValidator allows trailing newline"
|
|
8
|
-
},
|
|
9
|
-
{
|
|
10
|
-
"instance_id": "django__django-11283",
|
|
11
|
-
"repo": "django/django",
|
|
12
|
-
"difficulty": "easy",
|
|
13
|
-
"category": "bug-fix",
|
|
14
|
-
"description": "Migration auth.0011 is not backward compatible"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"instance_id": "django__django-12708",
|
|
18
|
-
"repo": "django/django",
|
|
19
|
-
"difficulty": "medium",
|
|
20
|
-
"category": "bug-fix",
|
|
21
|
-
"description": "Migration optimizer does not reduce multiple AlterField"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"instance_id": "flask__flask-4045",
|
|
25
|
-
"repo": "pallets/flask",
|
|
26
|
-
"difficulty": "easy",
|
|
27
|
-
"category": "bug-fix",
|
|
28
|
-
"description": "Raise error when blueprint name contains a dot"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"instance_id": "flask__flask-4992",
|
|
32
|
-
"repo": "pallets/flask",
|
|
33
|
-
"difficulty": "medium",
|
|
34
|
-
"category": "enhancement",
|
|
35
|
-
"description": "Add --app and --debug options to flask CLI"
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"instance_id": "requests__requests-3362",
|
|
39
|
-
"repo": "psf/requests",
|
|
40
|
-
"difficulty": "easy",
|
|
41
|
-
"category": "bug-fix",
|
|
42
|
-
"description": "Allow setting verify=False in session"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"instance_id": "requests__requests-1963",
|
|
46
|
-
"repo": "psf/requests",
|
|
47
|
-
"difficulty": "medium",
|
|
48
|
-
"category": "bug-fix",
|
|
49
|
-
"description": "Non-conforming HTTP header causes UnicodeError"
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
"instance_id": "sympy__sympy-13146",
|
|
53
|
-
"repo": "sympy/sympy",
|
|
54
|
-
"difficulty": "easy",
|
|
55
|
-
"category": "bug-fix",
|
|
56
|
-
"description": "Exponent printing issue in pretty printer"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"instance_id": "sympy__sympy-13471",
|
|
60
|
-
"repo": "sympy/sympy",
|
|
61
|
-
"difficulty": "medium",
|
|
62
|
-
"category": "bug-fix",
|
|
63
|
-
"description": "Python code generation not supporting user functions"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"instance_id": "sympy__sympy-15345",
|
|
67
|
-
"repo": "sympy/sympy",
|
|
68
|
-
"difficulty": "hard",
|
|
69
|
-
"category": "bug-fix",
|
|
70
|
-
"description": "Mathematica code printer does not handle Max/Min properly"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"instance_id": "scikit-learn__scikit-learn-10297",
|
|
74
|
-
"repo": "scikit-learn/scikit-learn",
|
|
75
|
-
"difficulty": "easy",
|
|
76
|
-
"category": "bug-fix",
|
|
77
|
-
"description": "linear_model.RidgeClassifierCV default store_cv_values incompatible"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"instance_id": "scikit-learn__scikit-learn-13142",
|
|
81
|
-
"repo": "scikit-learn/scikit-learn",
|
|
82
|
-
"difficulty": "medium",
|
|
83
|
-
"category": "bug-fix",
|
|
84
|
-
"description": "GaussianMixture predict and predict_proba inconsistent"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"instance_id": "scikit-learn__scikit-learn-13779",
|
|
88
|
-
"repo": "scikit-learn/scikit-learn",
|
|
89
|
-
"difficulty": "hard",
|
|
90
|
-
"category": "bug-fix",
|
|
91
|
-
"description": "Voting estimator does not work with set_params"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"instance_id": "matplotlib__matplotlib-23314",
|
|
95
|
-
"repo": "matplotlib/matplotlib",
|
|
96
|
-
"difficulty": "easy",
|
|
97
|
-
"category": "bug-fix",
|
|
98
|
-
"description": "set_visible on legend not working"
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"instance_id": "matplotlib__matplotlib-23476",
|
|
102
|
-
"repo": "matplotlib/matplotlib",
|
|
103
|
-
"difficulty": "medium",
|
|
104
|
-
"category": "bug-fix",
|
|
105
|
-
"description": "Axes3D.scatter ignores depthshade keyword argument"
|
|
106
|
-
},
|
|
107
|
-
{
|
|
108
|
-
"instance_id": "matplotlib__matplotlib-25332",
|
|
109
|
-
"repo": "matplotlib/matplotlib",
|
|
110
|
-
"difficulty": "hard",
|
|
111
|
-
"category": "bug-fix",
|
|
112
|
-
"description": "Axes.set_ticks behavior with labels parameter"
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
"instance_id": "astropy__astropy-6938",
|
|
116
|
-
"repo": "astropy/astropy",
|
|
117
|
-
"difficulty": "easy",
|
|
118
|
-
"category": "bug-fix",
|
|
119
|
-
"description": "Possible issue in io.fits with uint conversion"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"instance_id": "astropy__astropy-14182",
|
|
123
|
-
"repo": "astropy/astropy",
|
|
124
|
-
"difficulty": "hard",
|
|
125
|
-
"category": "bug-fix",
|
|
126
|
-
"description": "Inconsistent handling of empty in ASCII table"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"instance_id": "sphinx-doc__sphinx-8273",
|
|
130
|
-
"repo": "sphinx-doc/sphinx",
|
|
131
|
-
"difficulty": "medium",
|
|
132
|
-
"category": "bug-fix",
|
|
133
|
-
"description": "Generate man page section directories"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"instance_id": "sphinx-doc__sphinx-8474",
|
|
137
|
-
"repo": "sphinx-doc/sphinx",
|
|
138
|
-
"difficulty": "hard",
|
|
139
|
-
"category": "enhancement",
|
|
140
|
-
"description": "Check if 'rst_prolog' affects domain directives"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"instance_id": "pylint-dev__pylint-7080",
|
|
144
|
-
"repo": "pylint-dev/pylint",
|
|
145
|
-
"difficulty": "easy",
|
|
146
|
-
"category": "bug-fix",
|
|
147
|
-
"description": "Regex pattern does not match for ignore-paths"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"instance_id": "pylint-dev__pylint-7114",
|
|
151
|
-
"repo": "pylint-dev/pylint",
|
|
152
|
-
"difficulty": "medium",
|
|
153
|
-
"category": "bug-fix",
|
|
154
|
-
"description": "Linting fails on __init__ constructor with too-many-function-args"
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
"instance_id": "pytest-dev__pytest-5221",
|
|
158
|
-
"repo": "pytest-dev/pytest",
|
|
159
|
-
"difficulty": "easy",
|
|
160
|
-
"category": "bug-fix",
|
|
161
|
-
"description": "Display hint when 'python -m pytest' warning is shown"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"instance_id": "pytest-dev__pytest-5692",
|
|
165
|
-
"repo": "pytest-dev/pytest",
|
|
166
|
-
"difficulty": "medium",
|
|
167
|
-
"category": "bug-fix",
|
|
168
|
-
"description": "Hostname and timestamp not added to Junit XML report"
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"instance_id": "pytest-dev__pytest-7373",
|
|
172
|
-
"repo": "pytest-dev/pytest",
|
|
173
|
-
"difficulty": "hard",
|
|
174
|
-
"category": "bug-fix",
|
|
175
|
-
"description": "Incorrect caching of directories with --import-mode=importlib"
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
"instance_id": "django__django-13230",
|
|
179
|
-
"repo": "django/django",
|
|
180
|
-
"difficulty": "hard",
|
|
181
|
-
"category": "bug-fix",
|
|
182
|
-
"description": "Add support for item_comments to syndication framework"
|
|
183
|
-
},
|
|
184
|
-
{
|
|
185
|
-
"instance_id": "django__django-13710",
|
|
186
|
-
"repo": "django/django",
|
|
187
|
-
"difficulty": "hard",
|
|
188
|
-
"category": "bug-fix",
|
|
189
|
-
"description": "Use admin_order_field for related fields in ModelAdmin"
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
"instance_id": "sympy__sympy-20442",
|
|
193
|
-
"repo": "sympy/sympy",
|
|
194
|
-
"difficulty": "hard",
|
|
195
|
-
"category": "bug-fix",
|
|
196
|
-
"description": "convert_to not working for composites of other units"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"instance_id": "scikit-learn__scikit-learn-14983",
|
|
200
|
-
"repo": "scikit-learn/scikit-learn",
|
|
201
|
-
"difficulty": "hard",
|
|
202
|
-
"category": "enhancement",
|
|
203
|
-
"description": "RepeatedKFold and RepeatedStratifiedKFold do not show correct __repr__"
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
"instance_id": "matplotlib__matplotlib-23562",
|
|
207
|
-
"repo": "matplotlib/matplotlib",
|
|
208
|
-
"difficulty": "hard",
|
|
209
|
-
"category": "bug-fix",
|
|
210
|
-
"description": "mpl_toolkits.mplot3d.art3d.Poly3DCollection set_verts problem"
|
|
211
|
-
}
|
|
212
|
-
]
|