claudecode-omc 5.6.5 → 5.6.7
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/.local/commands/code-review.md +416 -0
- package/.local/commands/pr.md +250 -0
- package/.local/commands/prp-pr.md +244 -0
- package/.local/guidelines/CLAUDE.md +47 -0
- package/.local/skills/h5-to-swiftui/SKILL.md +201 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/README.md +176 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/h5-twin/index.html +52 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/h5-twin/style.css +133 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/swiftui-twin/Package.swift +26 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/swiftui-twin/Sources/CalibrationScreen/CalibrationScreen.swift +142 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/swiftui-twin-divergent/Package.swift +32 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/swiftui-twin-divergent/Sources/CalibrationScreenDivergent/CalibrationScreenDivergent.swift +122 -0
- package/.local/skills/h5-to-swiftui/assets/calibration/tokens.json +42 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/index.html +14 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/package.json +20 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/public/api/articles/001.json +96 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/public/api/articles/index.json +89 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/App.jsx +22 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/App.module.css +11 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/ArticleCard.jsx +53 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/ArticleCard.module.css +139 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/NavBar.jsx +37 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/NavBar.module.css +72 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/TagCloud.jsx +30 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/TagCloud.module.css +50 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/TrendChart.jsx +159 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/components/TrendChart.module.css +21 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/main.jsx +12 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/screens/ArticleScreen.jsx +182 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/screens/ArticleScreen.module.css +294 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/screens/FeedScreen.jsx +147 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/screens/FeedScreen.module.css +161 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/styles/global.css +50 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/src/styles/tokens.css +103 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-react/vite.config.js +6 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/data/tasks.js +67 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/index.html +26 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/router.js +73 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/screens/detail.js +164 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/screens/home.js +53 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/screens/list.js +87 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/styles/app.css +342 -0
- package/.local/skills/h5-to-swiftui/assets/sample-h5-vanilla/styles/tokens.css +68 -0
- package/.local/skills/h5-to-swiftui/references/css-to-swiftui-map.md +205 -0
- package/.local/skills/h5-to-swiftui/references/design-token-extraction.md +209 -0
- package/.local/skills/h5-to-swiftui/references/high-risk-triage.md +209 -0
- package/.local/skills/h5-to-swiftui/references/render-equivalence-calibration.md +193 -0
- package/.local/skills/h5-to-swiftui/references/stack-detection.md +160 -0
- package/.local/skills/h5-to-swiftui/references/visual-diff-loop-protocol.md +365 -0
- package/.local/skills/h5-to-swiftui/scripts/_calib-consts.mjs +150 -0
- package/.local/skills/h5-to-swiftui/scripts/_imglib.mjs +547 -0
- package/.local/skills/h5-to-swiftui/scripts/_provenance.mjs +123 -0
- package/.local/skills/h5-to-swiftui/scripts/calibrate-render.mjs +625 -0
- package/.local/skills/h5-to-swiftui/scripts/capture-reference.mjs +386 -0
- package/.local/skills/h5-to-swiftui/scripts/detect-stack.mjs +305 -0
- package/.local/skills/h5-to-swiftui/scripts/evaluate-convergence.mjs +1093 -0
- package/.local/skills/h5-to-swiftui/scripts/extract-tokens.mjs +600 -0
- package/.local/skills/h5-to-swiftui/scripts/mark-overlay.mjs +379 -0
- package/.local/skills/h5-to-swiftui/scripts/pixel-diff.mjs +530 -0
- package/.local/skills/h5-to-swiftui/scripts/sim-screenshot.sh +544 -0
- package/bundled/manifest.json +4 -4
- package/bundled/upstream/anthropic-skills/skills/algorithmic-art/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/brand-guidelines/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/canvas-design/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/SKILL.md +120 -58
- package/bundled/upstream/anthropic-skills/skills/claude-api/curl/examples.md +9 -9
- package/bundled/upstream/anthropic-skills/skills/claude-api/curl/managed-agents.md +336 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/go/managed-agents/README.md +561 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/java/claude-api.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/java/managed-agents/README.md +442 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/php/claude-api.md +10 -10
- package/bundled/upstream/anthropic-skills/skills/claude-api/php/managed-agents/README.md +435 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/README.md +16 -16
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/batches.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/files-api.md +3 -3
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/streaming.md +7 -7
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/claude-api/tool-use.md +19 -19
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/managed-agents/README.md +332 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/claude-api.md +4 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/ruby/managed-agents/README.md +389 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/agent-design.md +101 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/error-codes.md +11 -4
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/live-sources.md +60 -48
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-api-reference.md +372 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-client-patterns.md +209 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-core.md +220 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-environments.md +211 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-events.md +195 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-memory.md +197 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-multiagent.md +99 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-onboarding.md +114 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-outcomes.md +106 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-overview.md +67 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-tools.md +315 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/managed-agents-webhooks.md +110 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/model-migration.md +779 -0
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/models.md +16 -14
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/prompt-caching.md +45 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/shared/tool-use-concepts.md +28 -6
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/README.md +15 -15
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/batches.md +2 -2
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/files-api.md +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/streaming.md +5 -5
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/claude-api/tool-use.md +15 -15
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/managed-agents/README.md +359 -0
- package/bundled/upstream/anthropic-skills/skills/internal-comms/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/mcp-builder/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/skill-creator/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/slack-gif-creator/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/theme-factory/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/web-artifacts-builder/LICENSE.txt +1 -1
- package/bundled/upstream/anthropic-skills/skills/webapp-testing/LICENSE.txt +1 -1
- package/bundled/upstream/ecc/.omc-source/bundle.json +2 -3
- package/bundled/upstream/ecc/.omc-source/manifests/.claude-plugin/marketplace.json +4 -4
- package/bundled/upstream/ecc/agents/a11y-architect.md +10 -2
- package/bundled/upstream/ecc/agents/architect.md +9 -0
- package/bundled/upstream/ecc/agents/build-error-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/chief-of-staff.md +9 -0
- package/bundled/upstream/ecc/agents/code-architect.md +9 -0
- package/bundled/upstream/ecc/agents/code-explorer.md +10 -1
- package/bundled/upstream/ecc/agents/code-reviewer.md +87 -1
- package/bundled/upstream/ecc/agents/code-simplifier.md +9 -0
- package/bundled/upstream/ecc/agents/comment-analyzer.md +10 -1
- package/bundled/upstream/ecc/agents/conversation-analyzer.md +9 -0
- package/bundled/upstream/ecc/agents/cpp-build-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/cpp-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/csharp-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/dart-build-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/database-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/django-build-resolver.md +252 -0
- package/bundled/upstream/ecc/agents/django-reviewer.md +169 -0
- package/bundled/upstream/ecc/agents/doc-updater.md +9 -0
- package/bundled/upstream/ecc/agents/docs-lookup.md +9 -0
- package/bundled/upstream/ecc/agents/e2e-runner.md +9 -0
- package/bundled/upstream/ecc/agents/fastapi-reviewer.md +79 -0
- package/bundled/upstream/ecc/agents/flutter-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/fsharp-reviewer.md +109 -0
- package/bundled/upstream/ecc/agents/gan-evaluator.md +9 -0
- package/bundled/upstream/ecc/agents/gan-generator.md +9 -0
- package/bundled/upstream/ecc/agents/gan-planner.md +9 -0
- package/bundled/upstream/ecc/agents/go-build-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/go-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/harmonyos-app-resolver.md +182 -0
- package/bundled/upstream/ecc/agents/harness-optimizer.md +9 -0
- package/bundled/upstream/ecc/agents/healthcare-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/homelab-architect.md +107 -0
- package/bundled/upstream/ecc/agents/java-build-resolver.md +133 -11
- package/bundled/upstream/ecc/agents/java-reviewer.md +130 -32
- package/bundled/upstream/ecc/agents/kotlin-build-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/kotlin-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/loop-operator.md +9 -0
- package/bundled/upstream/ecc/agents/mle-reviewer.md +162 -0
- package/bundled/upstream/ecc/agents/network-architect.md +106 -0
- package/bundled/upstream/ecc/agents/network-config-reviewer.md +106 -0
- package/bundled/upstream/ecc/agents/network-troubleshooter.md +128 -0
- package/bundled/upstream/ecc/agents/opensource-forker.md +9 -0
- package/bundled/upstream/ecc/agents/opensource-packager.md +9 -0
- package/bundled/upstream/ecc/agents/opensource-sanitizer.md +9 -0
- package/bundled/upstream/ecc/agents/performance-optimizer.md +9 -0
- package/bundled/upstream/ecc/agents/planner.md +9 -0
- package/bundled/upstream/ecc/agents/pr-test-analyzer.md +9 -0
- package/bundled/upstream/ecc/agents/python-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/pytorch-build-resolver.md +12 -3
- package/bundled/upstream/ecc/agents/refactor-cleaner.md +9 -0
- package/bundled/upstream/ecc/agents/rust-build-resolver.md +9 -0
- package/bundled/upstream/ecc/agents/rust-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/security-reviewer.md +9 -0
- package/bundled/upstream/ecc/agents/seo-specialist.md +10 -1
- package/bundled/upstream/ecc/agents/silent-failure-hunter.md +9 -0
- package/bundled/upstream/ecc/agents/swift-build-resolver.md +170 -0
- package/bundled/upstream/ecc/agents/swift-reviewer.md +116 -0
- package/bundled/upstream/ecc/agents/tdd-guide.md +9 -0
- package/bundled/upstream/ecc/agents/type-design-analyzer.md +10 -1
- package/bundled/upstream/ecc/agents/typescript-reviewer.md +9 -0
- package/bundled/upstream/ecc/commands/auto-update.md +28 -0
- package/bundled/upstream/ecc/commands/build-fix.md +4 -0
- package/bundled/upstream/ecc/commands/checkpoint.md +4 -0
- package/bundled/upstream/ecc/commands/code-review.md +3 -3
- package/bundled/upstream/ecc/commands/cost-report.md +107 -0
- package/bundled/upstream/ecc/commands/cpp-build.md +1 -1
- package/bundled/upstream/ecc/commands/cpp-test.md +1 -1
- package/bundled/upstream/ecc/commands/ecc-guide.md +93 -0
- package/bundled/upstream/ecc/commands/fastapi-review.md +39 -0
- package/bundled/upstream/ecc/commands/flutter-build.md +1 -1
- package/bundled/upstream/ecc/commands/flutter-test.md +1 -1
- package/bundled/upstream/ecc/commands/gan-build.md +4 -0
- package/bundled/upstream/ecc/commands/gan-design.md +4 -0
- package/bundled/upstream/ecc/commands/go-build.md +1 -1
- package/bundled/upstream/ecc/commands/go-test.md +1 -1
- package/bundled/upstream/ecc/commands/harness-audit.md +4 -0
- package/bundled/upstream/ecc/commands/jira.md +2 -2
- package/bundled/upstream/ecc/commands/kotlin-build.md +1 -1
- package/bundled/upstream/ecc/commands/kotlin-test.md +1 -1
- package/bundled/upstream/ecc/commands/learn.md +4 -0
- package/bundled/upstream/ecc/commands/loop-start.md +4 -0
- package/bundled/upstream/ecc/commands/loop-status.md +54 -1
- package/bundled/upstream/ecc/commands/model-route.md +4 -0
- package/bundled/upstream/ecc/commands/multi-backend.md +4 -0
- package/bundled/upstream/ecc/commands/multi-execute.md +4 -0
- package/bundled/upstream/ecc/commands/multi-frontend.md +4 -0
- package/bundled/upstream/ecc/commands/multi-plan.md +4 -0
- package/bundled/upstream/ecc/commands/multi-workflow.md +4 -0
- package/bundled/upstream/ecc/commands/plan-prd.md +160 -0
- package/bundled/upstream/ecc/commands/plan.md +96 -13
- package/bundled/upstream/ecc/commands/pm2.md +4 -0
- package/bundled/upstream/ecc/commands/pr.md +184 -0
- package/bundled/upstream/ecc/commands/project-init.md +86 -0
- package/bundled/upstream/ecc/commands/python-review.md +1 -1
- package/bundled/upstream/ecc/commands/quality-gate.md +4 -0
- package/bundled/upstream/ecc/commands/refactor-clean.md +4 -0
- package/bundled/upstream/ecc/commands/rust-build.md +1 -1
- package/bundled/upstream/ecc/commands/rust-test.md +1 -1
- package/bundled/upstream/ecc/commands/security-scan.md +92 -0
- package/bundled/upstream/ecc/commands/sessions.md +6 -6
- package/bundled/upstream/ecc/commands/skill-health.md +3 -3
- package/bundled/upstream/ecc/commands/test-coverage.md +4 -0
- package/bundled/upstream/ecc/commands/update-codemaps.md +4 -0
- package/bundled/upstream/ecc/commands/update-docs.md +4 -0
- package/bundled/upstream/ecc/skills/accessibility/SKILL.md +1 -1
- package/bundled/upstream/ecc/skills/agent-architecture-audit/SKILL.md +256 -0
- package/bundled/upstream/ecc/skills/agent-payment-x402/SKILL.md +49 -3
- package/bundled/upstream/ecc/skills/agentic-os/SKILL.md +387 -0
- package/bundled/upstream/ecc/skills/angular-developer/SKILL.md +154 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/angular-animations.md +160 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/angular-aria.md +410 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/cli.md +86 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/component-harnesses.md +59 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/component-styling.md +91 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/components.md +117 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/creating-services.md +97 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/data-resolvers.md +69 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/define-routes.md +67 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/defining-providers.md +72 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/di-fundamentals.md +120 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/e2e-testing.md +56 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/effects.md +83 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/hierarchical-injectors.md +43 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/host-elements.md +80 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/injection-context.md +63 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/inputs.md +101 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/linked-signal.md +59 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/loading-strategies.md +61 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/mcp.md +108 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/navigate-to-routes.md +69 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/outputs.md +86 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/reactive-forms.md +122 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/rendering-strategies.md +44 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/resource.md +77 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/route-animations.md +56 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/route-guards.md +52 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/router-lifecycle.md +45 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/router-testing.md +87 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/show-routes-with-outlets.md +68 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/signal-forms.md +795 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/signals-overview.md +94 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/tailwind-css.md +69 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/template-driven-forms.md +114 -0
- package/bundled/upstream/ecc/skills/angular-developer/references/testing-fundamentals.md +65 -0
- package/bundled/upstream/ecc/skills/autonomous-agent-harness/SKILL.md +6 -0
- package/bundled/upstream/ecc/skills/backend-patterns/SKILL.md +8 -45
- package/bundled/upstream/ecc/skills/cisco-ios-patterns/SKILL.md +163 -0
- package/bundled/upstream/ecc/skills/configure-ecc/SKILL.md +31 -14
- package/bundled/upstream/ecc/skills/continuous-learning/SKILL.md +10 -2
- package/bundled/upstream/ecc/skills/continuous-learning-v2/SKILL.md +19 -5
- package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/observer-loop.sh +44 -4
- package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/observer.md +4 -4
- package/bundled/upstream/ecc/skills/continuous-learning-v2/agents/start-observer.sh +5 -1
- package/bundled/upstream/ecc/skills/continuous-learning-v2/hooks/observe.sh +21 -5
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/detect-project.sh +58 -13
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/instinct-cli.py +97 -4
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/migrate-homunculus.sh +62 -0
- package/bundled/upstream/ecc/skills/continuous-learning-v2/scripts/test_parse_instinct.py +34 -0
- package/bundled/upstream/ecc/skills/cost-tracking/SKILL.md +147 -0
- package/bundled/upstream/ecc/skills/deep-research/SKILL.md +4 -0
- package/bundled/upstream/ecc/skills/defi-amm-security/SKILL.md +6 -0
- package/bundled/upstream/ecc/skills/django-celery/SKILL.md +457 -0
- package/bundled/upstream/ecc/skills/ecc-guide/SKILL.md +189 -0
- package/bundled/upstream/ecc/skills/error-handling/SKILL.md +376 -0
- package/bundled/upstream/ecc/skills/exa-search/SKILL.md +4 -0
- package/bundled/upstream/ecc/skills/fal-ai-media/SKILL.md +4 -0
- package/bundled/upstream/ecc/skills/fastapi-patterns/SKILL.md +327 -0
- package/bundled/upstream/ecc/skills/flox-environments/SKILL.md +496 -0
- package/bundled/upstream/ecc/skills/frontend-design-direction/SKILL.md +92 -0
- package/bundled/upstream/ecc/skills/frontend-slides/animation-patterns.md +122 -0
- package/bundled/upstream/ecc/skills/frontend-slides/html-template.md +419 -0
- package/bundled/upstream/ecc/skills/frontend-slides/scripts/export-pdf.sh +418 -0
- package/bundled/upstream/ecc/skills/frontend-slides/scripts/extract-pptx.py +96 -0
- package/bundled/upstream/ecc/skills/frontend-slides/viewport-base.css +153 -0
- package/bundled/upstream/ecc/skills/fsharp-testing/SKILL.md +280 -0
- package/bundled/upstream/ecc/skills/gateguard/SKILL.md +4 -0
- package/bundled/upstream/ecc/skills/hermes-imports/SKILL.md +88 -0
- package/bundled/upstream/ecc/skills/homelab-network-readiness/SKILL.md +169 -0
- package/bundled/upstream/ecc/skills/homelab-network-setup/SKILL.md +129 -0
- package/bundled/upstream/ecc/skills/homelab-pihole-dns/SKILL.md +274 -0
- package/bundled/upstream/ecc/skills/homelab-vlan-segmentation/SKILL.md +311 -0
- package/bundled/upstream/ecc/skills/homelab-wireguard-vpn/SKILL.md +305 -0
- package/bundled/upstream/ecc/skills/ios-icon-gen/SKILL.md +157 -0
- package/bundled/upstream/ecc/skills/ios-icon-gen/scripts/generate_icons.swift +258 -0
- package/bundled/upstream/ecc/skills/ios-icon-gen/scripts/iconify_gen.sh +235 -0
- package/bundled/upstream/ecc/skills/java-coding-standards/SKILL.md +241 -5
- package/bundled/upstream/ecc/skills/make-interfaces-feel-better/SKILL.md +151 -0
- package/bundled/upstream/ecc/skills/mle-workflow/SKILL.md +346 -0
- package/bundled/upstream/ecc/skills/motion-advanced/SKILL.md +596 -0
- package/bundled/upstream/ecc/skills/motion-foundations/SKILL.md +299 -0
- package/bundled/upstream/ecc/skills/motion-patterns/SKILL.md +435 -0
- package/bundled/upstream/ecc/skills/motion-ui/SKILL.md +575 -0
- package/bundled/upstream/ecc/skills/mysql-patterns/SKILL.md +412 -0
- package/bundled/upstream/ecc/skills/netmiko-ssh-automation/SKILL.md +173 -0
- package/bundled/upstream/ecc/skills/network-bgp-diagnostics/SKILL.md +167 -0
- package/bundled/upstream/ecc/skills/network-config-validation/SKILL.md +210 -0
- package/bundled/upstream/ecc/skills/network-interface-health/SKILL.md +152 -0
- package/bundled/upstream/ecc/skills/openclaw-persona-forge/SKILL.md +1 -9
- package/bundled/upstream/ecc/skills/plan-orchestrate/SKILL.md +262 -0
- package/bundled/upstream/ecc/skills/prisma-patterns/SKILL.md +371 -0
- package/bundled/upstream/ecc/skills/production-audit/SKILL.md +206 -0
- package/bundled/upstream/ecc/skills/prompt-optimizer/SKILL.md +24 -400
- package/bundled/upstream/ecc/skills/quarkus-patterns/SKILL.md +722 -0
- package/bundled/upstream/ecc/skills/quarkus-security/SKILL.md +467 -0
- package/bundled/upstream/ecc/skills/quarkus-tdd/SKILL.md +811 -0
- package/bundled/upstream/ecc/skills/quarkus-verification/SKILL.md +479 -0
- package/bundled/upstream/ecc/skills/redis-patterns/SKILL.md +403 -0
- package/bundled/upstream/ecc/skills/scientific-db-pubmed-database/SKILL.md +175 -0
- package/bundled/upstream/ecc/skills/scientific-db-uspto-database/SKILL.md +177 -0
- package/bundled/upstream/ecc/skills/scientific-pkg-gget/SKILL.md +166 -0
- package/bundled/upstream/ecc/skills/scientific-thinking-literature-review/SKILL.md +192 -0
- package/bundled/upstream/ecc/skills/scientific-thinking-scholar-evaluation/SKILL.md +160 -0
- package/bundled/upstream/ecc/skills/search-first/SKILL.md +23 -2
- package/bundled/upstream/ecc/skills/security-review/SKILL.md +10 -2
- package/bundled/upstream/ecc/skills/skill-comply/scripts/runner.py +28 -3
- package/bundled/upstream/ecc/skills/skill-comply/tests/test_runner.py +172 -0
- package/bundled/upstream/ecc/skills/skill-scout/SKILL.md +140 -0
- package/bundled/upstream/ecc/skills/skill-stocktake/SKILL.md +1 -0
- package/bundled/upstream/ecc/skills/strategic-compact/SKILL.md +2 -2
- package/bundled/upstream/ecc/skills/tinystruct-patterns/SKILL.md +203 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/architecture.md +90 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/data-handling.md +60 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/database.md +99 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/routing.md +64 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/system-usage.md +97 -0
- package/bundled/upstream/ecc/skills/tinystruct-patterns/references/testing.md +72 -0
- package/bundled/upstream/ecc/skills/ui-to-vue/SKILL.md +134 -0
- package/bundled/upstream/ecc/skills/vite-patterns/SKILL.md +449 -0
- package/bundled/upstream/ecc/skills/windows-desktop-e2e/SKILL.md +788 -0
- package/bundled/upstream/ecc/skills/x-api/SKILL.md +4 -0
- package/bundled/upstream/oh-my-claudecode/.omc-source/bundle.json +20 -0
- package/bundled/upstream/oh-my-claudecode/agents/analyst.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/architect.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/code-reviewer.md +26 -7
- package/bundled/upstream/oh-my-claudecode/agents/critic.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/debugger.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/designer.md +14 -1
- package/bundled/upstream/oh-my-claudecode/agents/document-specialist.md +1 -1
- package/bundled/upstream/oh-my-claudecode/agents/executor.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/explore.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/git-master.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/planner.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/qa-tester.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/scientist.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/security-reviewer.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/test-engineer.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/tracer.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/verifier.md +2 -1
- package/bundled/upstream/oh-my-claudecode/agents/writer.md +2 -1
- package/bundled/upstream/oh-my-claudecode/skills/AGENTS.md +4 -3
- package/bundled/upstream/oh-my-claudecode/skills/ai-slop-cleaner/SKILL.md +12 -0
- package/bundled/upstream/oh-my-claudecode/skills/deep-dive/SKILL.md +69 -13
- package/bundled/upstream/oh-my-claudecode/skills/deep-interview/SKILL.md +176 -63
- package/bundled/upstream/oh-my-claudecode/skills/learner/SKILL.md +3 -1
- package/bundled/upstream/oh-my-claudecode/skills/omc-doctor/SKILL.md +22 -3
- package/bundled/upstream/oh-my-claudecode/skills/omc-reference/SKILL.md +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/01-install-claude-md.md +2 -2
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/02-configure.md +45 -2
- package/bundled/upstream/oh-my-claudecode/skills/omc-setup/phases/03-integrations.md +46 -5
- package/bundled/upstream/oh-my-claudecode/skills/plan/SKILL.md +19 -17
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/config.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/parse.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/azure-devops.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/bitbucket.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/gitea.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/github.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/gitlab.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/interface.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/providers/jira.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/session.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/tmux.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/lib/worktree.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/psm.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/project-session-manager/tests/test-psm-prompt-injection.sh +1 -1
- package/bundled/upstream/oh-my-claudecode/skills/ralph/SKILL.md +8 -8
- package/bundled/upstream/oh-my-claudecode/skills/ralplan/SKILL.md +9 -5
- package/bundled/upstream/oh-my-claudecode/skills/skill/SKILL.md +6 -6
- package/bundled/upstream/oh-my-claudecode/skills/skillify/SKILL.md +19 -3
- package/bundled/upstream/oh-my-claudecode/skills/trace/SKILL.md +3 -1
- package/bundled/upstream/oh-my-claudecode/skills/ultrawork/SKILL.md +20 -7
- package/bundled/upstream/superpowers/.omc-source/bundle.json +21 -0
- package/bundled/upstream/superpowers/hooks/hooks-cursor.json +1 -1
- package/bundled/upstream/superpowers/skills/executing-plans/SKILL.md +1 -1
- package/bundled/upstream/superpowers/skills/finishing-a-development-branch/SKILL.md +93 -42
- package/bundled/upstream/superpowers/skills/requesting-code-review/SKILL.md +7 -9
- package/bundled/upstream/superpowers/skills/requesting-code-review/code-reviewer.md +107 -85
- package/bundled/upstream/superpowers/skills/subagent-driven-development/SKILL.md +3 -1
- package/bundled/upstream/superpowers/skills/subagent-driven-development/code-quality-reviewer-prompt.md +2 -3
- package/bundled/upstream/superpowers/skills/systematic-debugging/CREATION-LOG.md +1 -1
- package/bundled/upstream/superpowers/skills/systematic-debugging/root-cause-tracing.md +1 -1
- package/bundled/upstream/superpowers/skills/using-git-worktrees/SKILL.md +95 -98
- package/bundled/upstream/superpowers/skills/using-superpowers/references/codex-tools.md +7 -48
- package/bundled/upstream/superpowers/skills/using-superpowers/references/copilot-tools.md +1 -11
- package/bundled/upstream/superpowers/skills/using-superpowers/references/gemini-tools.md +21 -3
- package/bundled/upstream/superpowers/skills/writing-plans/SKILL.md +1 -1
- package/package.json +1 -1
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/agent-sdk/README.md +0 -355
- package/bundled/upstream/anthropic-skills/skills/claude-api/python/agent-sdk/patterns.md +0 -359
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/agent-sdk/README.md +0 -297
- package/bundled/upstream/anthropic-skills/skills/claude-api/typescript/agent-sdk/patterns.md +0 -209
- package/bundled/upstream/ecc/commands/agent-sort.md +0 -23
- package/bundled/upstream/ecc/commands/claw.md +0 -23
- package/bundled/upstream/ecc/commands/context-budget.md +0 -23
- package/bundled/upstream/ecc/commands/devfleet.md +0 -23
- package/bundled/upstream/ecc/commands/docs.md +0 -23
- package/bundled/upstream/ecc/commands/e2e.md +0 -268
- package/bundled/upstream/ecc/commands/eval.md +0 -23
- package/bundled/upstream/ecc/commands/orchestrate.md +0 -135
- package/bundled/upstream/ecc/commands/prompt-optimize.md +0 -23
- package/bundled/upstream/ecc/commands/rules-distill.md +0 -20
- package/bundled/upstream/ecc/commands/tdd.md +0 -231
- package/bundled/upstream/ecc/commands/verify.md +0 -23
- package/bundled/upstream/ecc/skills/claude-api/SKILL.md +0 -337
- package/bundled/upstream/ecc/skills/frontend-design/SKILL.md +0 -145
- package/bundled/upstream/superpowers/agents/code-reviewer.md +0 -48
- package/bundled/upstream/superpowers/commands/brainstorm.md +0 -5
- package/bundled/upstream/superpowers/commands/execute-plan.md +0 -5
- package/bundled/upstream/superpowers/commands/write-plan.md +0 -5
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: uspto-database
|
|
3
|
+
description: USPTO patent and trademark data workflow for official record lookup, PatentSearch queries, TSDR checks, assignment data, and reproducible IP research logs.
|
|
4
|
+
origin: community
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# USPTO Database
|
|
8
|
+
|
|
9
|
+
Use this skill when a task needs official United States patent or trademark
|
|
10
|
+
records from USPTO systems.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- Searching granted patents or pre-grant publications.
|
|
15
|
+
- Checking patent application status, file-wrapper data, assignments, or
|
|
16
|
+
public prosecution history.
|
|
17
|
+
- Looking up trademark status, documents, or assignment history.
|
|
18
|
+
- Building reproducible prior-art, portfolio, or IP landscape research logs.
|
|
19
|
+
- Comparing USPTO records with secondary tools such as Google Patents,
|
|
20
|
+
Lens.org, Semantic Scholar, or company patent pages.
|
|
21
|
+
|
|
22
|
+
Do not use this skill to give legal advice. Treat it as a data-gathering and
|
|
23
|
+
record-verification workflow.
|
|
24
|
+
|
|
25
|
+
## Source Selection
|
|
26
|
+
|
|
27
|
+
Prefer official USPTO or USPTO-supported surfaces first:
|
|
28
|
+
|
|
29
|
+
- Open Data Portal (ODP): current home for migrated USPTO datasets and APIs.
|
|
30
|
+
- Patent File Wrapper: public patent application bibliographic data and file
|
|
31
|
+
wrapper records.
|
|
32
|
+
- PatentSearch API: PatentsView search API for granted patents and pre-grant
|
|
33
|
+
publication datasets.
|
|
34
|
+
- TSDR Data API: trademark status and document retrieval.
|
|
35
|
+
- Patent and Trademark Assignment Search: ownership transfer records.
|
|
36
|
+
- PTAB data in ODP: Patent Trial and Appeal Board proceedings.
|
|
37
|
+
|
|
38
|
+
Use secondary sources only as convenience indexes. When the answer matters,
|
|
39
|
+
cross-check the official record.
|
|
40
|
+
|
|
41
|
+
## Authentication and Secrets
|
|
42
|
+
|
|
43
|
+
Many USPTO API flows require an API key. Store keys in environment variables or
|
|
44
|
+
a secret manager, never in committed files or pasted transcripts.
|
|
45
|
+
|
|
46
|
+
Common environment names:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
export USPTO_API_KEY="..."
|
|
50
|
+
export PATENTSVIEW_API_KEY="..."
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
For PatentSearch, send the key with the `X-Api-Key` header. For TSDR, follow
|
|
54
|
+
the current USPTO API Manager instructions and rate-limit guidance.
|
|
55
|
+
|
|
56
|
+
## PatentSearch Workflow
|
|
57
|
+
|
|
58
|
+
Use PatentSearch for broad patent and pre-grant publication search when the
|
|
59
|
+
question is about trends, inventors, assignees, classifications, dates, or
|
|
60
|
+
portfolio slices.
|
|
61
|
+
|
|
62
|
+
Workflow:
|
|
63
|
+
|
|
64
|
+
1. Identify the endpoint from the current PatentSearch reference or Swagger UI.
|
|
65
|
+
2. Build a JSON query with explicit filters.
|
|
66
|
+
3. Request only the fields needed for the analysis.
|
|
67
|
+
4. Sort and paginate deterministically.
|
|
68
|
+
5. Record the endpoint, query body, date, data currency note, and result count.
|
|
69
|
+
|
|
70
|
+
Python request skeleton:
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
import os
|
|
74
|
+
import requests
|
|
75
|
+
|
|
76
|
+
API_KEY = os.environ["PATENTSVIEW_API_KEY"]
|
|
77
|
+
BASE = "https://search.patentsview.org/api/v1"
|
|
78
|
+
|
|
79
|
+
payload = {
|
|
80
|
+
"q": {
|
|
81
|
+
"_and": [
|
|
82
|
+
{"patent_date": {"_gte": "2024-01-01"}},
|
|
83
|
+
{"assignees.assignee_organization": {"_text_any": ["Google", "Alphabet"]}},
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"f": ["patent_id", "patent_title", "patent_date"],
|
|
87
|
+
"s": [{"patent_date": "desc"}],
|
|
88
|
+
"o": {"per_page": 100, "page": 1},
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
response = requests.post(
|
|
92
|
+
f"{BASE}/patent/",
|
|
93
|
+
headers={"X-Api-Key": API_KEY, "Content-Type": "application/json"},
|
|
94
|
+
json=payload,
|
|
95
|
+
timeout=30,
|
|
96
|
+
)
|
|
97
|
+
response.raise_for_status()
|
|
98
|
+
print(response.json())
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Before reusing a query, verify current endpoint names, field paths, request
|
|
102
|
+
parameters, and API-key availability in the live PatentSearch docs.
|
|
103
|
+
|
|
104
|
+
## Trademark/TSDR Workflow
|
|
105
|
+
|
|
106
|
+
Use TSDR when the task needs trademark case status, documents, images, owner
|
|
107
|
+
history, or prosecution events.
|
|
108
|
+
|
|
109
|
+
Workflow:
|
|
110
|
+
|
|
111
|
+
1. Normalize the serial number or registration number.
|
|
112
|
+
2. Check the current TSDR API instructions and required API-key header.
|
|
113
|
+
3. Fetch status first, then documents only if needed.
|
|
114
|
+
4. Respect the lower rate limit for PDF, ZIP, and multi-case downloads.
|
|
115
|
+
5. Capture retrieval date and serial/registration identifier in the output.
|
|
116
|
+
|
|
117
|
+
For large trademark pulls, prefer documented bulk-data flows rather than
|
|
118
|
+
screen-scraping public pages.
|
|
119
|
+
|
|
120
|
+
## File Wrapper and Prosecution History
|
|
121
|
+
|
|
122
|
+
For application status, transaction history, and prosecution documents:
|
|
123
|
+
|
|
124
|
+
- Start with ODP Patent File Wrapper search.
|
|
125
|
+
- Use exact identifiers when available: application number, publication number,
|
|
126
|
+
patent number, or party name.
|
|
127
|
+
- Record whether the record is a granted patent, pre-grant publication, or
|
|
128
|
+
pending application.
|
|
129
|
+
- Cross-check document dates and status against the record detail page before
|
|
130
|
+
citing them.
|
|
131
|
+
|
|
132
|
+
## Assignment Workflow
|
|
133
|
+
|
|
134
|
+
For patent or trademark ownership:
|
|
135
|
+
|
|
136
|
+
1. Search official assignment data by patent/application/registration number,
|
|
137
|
+
assignor, assignee, or reel/frame when available.
|
|
138
|
+
2. Record conveyance text, execution date, recordation date, and parties.
|
|
139
|
+
3. Distinguish assignment records from current legal ownership conclusions.
|
|
140
|
+
4. If ownership is material, flag the result for attorney or subject-matter
|
|
141
|
+
review.
|
|
142
|
+
|
|
143
|
+
## Reproducible Output
|
|
144
|
+
|
|
145
|
+
Every USPTO research pass should include a log table:
|
|
146
|
+
|
|
147
|
+
```markdown
|
|
148
|
+
| Source | Date searched | Identifier/query | Filters | Results | Notes |
|
|
149
|
+
| --- | --- | --- | --- | ---: | --- |
|
|
150
|
+
| PatentSearch | 2026-05-11 | `assignee=Alphabet AND date>=2024` | patent endpoint | 118 | API docs checked before run |
|
|
151
|
+
| TSDR | 2026-05-11 | `serial=90000000` | status only | 1 | API-key flow, no document bulk pull |
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
For final writeups, separate:
|
|
155
|
+
|
|
156
|
+
- official record facts
|
|
157
|
+
- inferred analysis
|
|
158
|
+
- secondary-source convenience matches
|
|
159
|
+
- unresolved gaps or records that require legal review
|
|
160
|
+
|
|
161
|
+
## Review Checklist
|
|
162
|
+
|
|
163
|
+
- Did you use an official USPTO or USPTO-supported source first?
|
|
164
|
+
- Did you verify current endpoint and field names before running code?
|
|
165
|
+
- Are API keys kept out of files, shell history, and output logs?
|
|
166
|
+
- Does the query log include the date searched and exact request shape?
|
|
167
|
+
- Are rate limits respected?
|
|
168
|
+
- Are legal conclusions avoided or explicitly escalated?
|
|
169
|
+
- Are secondary sources labeled as secondary?
|
|
170
|
+
|
|
171
|
+
## References
|
|
172
|
+
|
|
173
|
+
- [USPTO APIs catalog](https://developer.uspto.gov/api-catalog)
|
|
174
|
+
- [USPTO Open Data Portal](https://data.uspto.gov/)
|
|
175
|
+
- [PatentSearch API reference](https://search.patentsview.org/docs/docs/Search%20API/SearchAPIReference/)
|
|
176
|
+
- [PatentSearch API updates](https://search.patentsview.org/docs/)
|
|
177
|
+
- [TSDR API bulk download FAQ](https://developer.uspto.gov/faq/tsdr-api-bulk-download)
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gget
|
|
3
|
+
description: gget CLI and Python workflow for quick genomic database queries, sequence lookup, BLAST-style searches, enrichment checks, and reproducible bioinformatics evidence logs.
|
|
4
|
+
origin: community
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# gget
|
|
8
|
+
|
|
9
|
+
Use this skill when a task needs quick bioinformatics lookup across genomic
|
|
10
|
+
reference databases with the `gget` CLI or Python package.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- Finding Ensembl IDs, gene metadata, transcript details, or sequences.
|
|
15
|
+
- Running quick BLAST or BLAT lookups without building a full local pipeline.
|
|
16
|
+
- Fetching reference genome links and annotations from Ensembl.
|
|
17
|
+
- Querying protein structure, pathway, cancer, expression, or disease-association
|
|
18
|
+
modules through a single interface.
|
|
19
|
+
- Creating a reproducible first-pass evidence log before moving to heavier
|
|
20
|
+
tools such as Biopython, Snakemake, Nextflow, BLAST+, or database-specific
|
|
21
|
+
clients.
|
|
22
|
+
|
|
23
|
+
Use a dedicated workflow instead of `gget` when the task requires regulated
|
|
24
|
+
clinical interpretation, high-throughput production pipelines, or fine-grained
|
|
25
|
+
control over database versions and local indexes.
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
Use a clean Python environment.
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
python -m venv .venv
|
|
33
|
+
. .venv/bin/activate
|
|
34
|
+
python -m pip install --upgrade pip
|
|
35
|
+
python -m pip install --upgrade gget
|
|
36
|
+
gget --help
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If `uv` is available:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
uv venv
|
|
43
|
+
. .venv/bin/activate
|
|
44
|
+
uv pip install gget
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Before relying on an older environment, upgrade `gget` and re-check the module
|
|
48
|
+
docs. The upstream databases queried by `gget` change over time.
|
|
49
|
+
|
|
50
|
+
## Basic Patterns
|
|
51
|
+
|
|
52
|
+
CLI shape:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
gget <module> [arguments] [options]
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Python shape:
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
import gget
|
|
62
|
+
|
|
63
|
+
result = gget.search(["BRCA1"], species="human")
|
|
64
|
+
print(result)
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Common workflow:
|
|
68
|
+
|
|
69
|
+
1. Identify the species, assembly, gene ID type, and database needed.
|
|
70
|
+
2. Check the current module documentation for arguments.
|
|
71
|
+
3. Run a small query first.
|
|
72
|
+
4. Save output with an explicit filename and date.
|
|
73
|
+
5. Record module name, version, arguments, and database assumptions.
|
|
74
|
+
|
|
75
|
+
## Common Modules
|
|
76
|
+
|
|
77
|
+
Use current upstream docs for exact arguments. These modules are common first
|
|
78
|
+
choices:
|
|
79
|
+
|
|
80
|
+
- `gget search`: find Ensembl IDs from search terms.
|
|
81
|
+
- `gget info`: retrieve metadata for Ensembl, UniProt, or related IDs.
|
|
82
|
+
- `gget seq`: fetch nucleotide or amino-acid sequences.
|
|
83
|
+
- `gget ref`: retrieve reference genome download links.
|
|
84
|
+
- `gget blast`: run a quick BLAST query.
|
|
85
|
+
- `gget blat`: locate a sequence against supported genome assemblies.
|
|
86
|
+
- `gget muscle`: run multiple sequence alignment.
|
|
87
|
+
- `gget diamond`: run local sequence alignment against reference sequences.
|
|
88
|
+
- `gget alphafold` and `gget pdb`: inspect protein-structure references.
|
|
89
|
+
- `gget enrichr`, `gget opentargets`, `gget archs4`, `gget bgee`, `gget cbio`,
|
|
90
|
+
and `gget cosmic`: explore enrichment, target, expression, cancer, and disease
|
|
91
|
+
association data.
|
|
92
|
+
|
|
93
|
+
Do not assume every module supports every Python version or dependency set.
|
|
94
|
+
Some optional scientific dependencies have narrower version support than the
|
|
95
|
+
core package.
|
|
96
|
+
|
|
97
|
+
## Quick Examples
|
|
98
|
+
|
|
99
|
+
Find genes:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
gget search -s human brca1 dna repair -o brca1-search.json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
Fetch gene metadata:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
gget info ENSG00000012048 -o brca1-info.json
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Fetch a sequence:
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
gget seq ENSG00000012048 -o brca1-seq.fa
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
Run a small BLAST query:
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
gget blast "MEEPQSDPSVEPPLSQETFSDLWKLLPEN" -l 10 -o blast-results.json
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Python example:
|
|
124
|
+
|
|
125
|
+
```python
|
|
126
|
+
import gget
|
|
127
|
+
|
|
128
|
+
genes = gget.search(["BRCA1", "DNA repair"], species="human")
|
|
129
|
+
info = gget.info(["ENSG00000012048"])
|
|
130
|
+
sequence = gget.seq("ENSG00000012048")
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Reproducibility Log
|
|
134
|
+
|
|
135
|
+
For scientific outputs, include enough metadata to replay the query.
|
|
136
|
+
|
|
137
|
+
```markdown
|
|
138
|
+
| Date | gget version | Module | Query | Species/assembly | Output | Notes |
|
|
139
|
+
| --- | --- | --- | --- | --- | --- | --- |
|
|
140
|
+
| 2026-05-11 | `gget --version` | search | `BRCA1 DNA repair` | human | `brca1-search.json` | Docs checked before run |
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Also record:
|
|
144
|
+
|
|
145
|
+
- Python version and environment manager.
|
|
146
|
+
- Any optional dependency installed through `gget setup`.
|
|
147
|
+
- Database-specific identifiers returned by the query.
|
|
148
|
+
- Whether output is JSON, CSV, FASTA, or a DataFrame export.
|
|
149
|
+
- Any failures that were resolved by upgrading `gget`.
|
|
150
|
+
|
|
151
|
+
## Review Checklist
|
|
152
|
+
|
|
153
|
+
- Did you upgrade or verify the installed `gget` version?
|
|
154
|
+
- Did you check the current upstream module docs before using arguments?
|
|
155
|
+
- Is the species or assembly explicit?
|
|
156
|
+
- Are identifiers preserved exactly, including Ensembl/UniProt prefixes?
|
|
157
|
+
- Is the result labeled as database output rather than clinical interpretation?
|
|
158
|
+
- Is the query reproducible from the saved command or Python snippet?
|
|
159
|
+
- Are optional dependencies installed in an isolated environment?
|
|
160
|
+
|
|
161
|
+
## References
|
|
162
|
+
|
|
163
|
+
- [gget documentation](https://pachterlab.github.io/gget/)
|
|
164
|
+
- [gget updates](https://pachterlab.github.io/gget/en/updates.html)
|
|
165
|
+
- [gget GitHub repository](https://github.com/pachterlab/gget)
|
|
166
|
+
- [gget Bioinformatics paper](https://doi.org/10.1093/bioinformatics/btac836)
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: literature-review
|
|
3
|
+
description: Systematic literature-review workflow for academic, biomedical, technical, and scientific topics, including search planning, source screening, synthesis, citation checks, and evidence logging.
|
|
4
|
+
origin: community
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Literature Review
|
|
8
|
+
|
|
9
|
+
Use this skill when the task is to find, screen, synthesize, and cite a body of
|
|
10
|
+
academic or technical literature.
|
|
11
|
+
|
|
12
|
+
## When to Use
|
|
13
|
+
|
|
14
|
+
- Building a systematic, scoping, or narrative literature review.
|
|
15
|
+
- Synthesizing the state of the art for a research question.
|
|
16
|
+
- Finding gaps, contradictions, or future-work directions.
|
|
17
|
+
- Preparing citation-backed background sections for papers or reports.
|
|
18
|
+
- Comparing evidence across peer-reviewed papers, preprints, patents, and
|
|
19
|
+
technical reports.
|
|
20
|
+
|
|
21
|
+
## Review Types
|
|
22
|
+
|
|
23
|
+
- **Narrative review**: broad synthesis; useful for orientation.
|
|
24
|
+
- **Scoping review**: maps concepts, methods, and evidence gaps.
|
|
25
|
+
- **Systematic review**: predefined protocol, reproducible search, explicit
|
|
26
|
+
screening and exclusion.
|
|
27
|
+
- **Meta-analysis**: systematic review plus quantitative effect aggregation.
|
|
28
|
+
|
|
29
|
+
Ask the user which level of rigor is needed. If unspecified, default to a
|
|
30
|
+
scoping review for exploratory work and a systematic review for publication or
|
|
31
|
+
clinical claims.
|
|
32
|
+
|
|
33
|
+
## Workflow
|
|
34
|
+
|
|
35
|
+
### 1. Define the Question
|
|
36
|
+
|
|
37
|
+
Convert the prompt into a searchable research question.
|
|
38
|
+
|
|
39
|
+
For clinical or biomedical work, use PICO:
|
|
40
|
+
|
|
41
|
+
- Population
|
|
42
|
+
- Intervention or exposure
|
|
43
|
+
- Comparator
|
|
44
|
+
- Outcome
|
|
45
|
+
|
|
46
|
+
For technical work, use:
|
|
47
|
+
|
|
48
|
+
- system or domain
|
|
49
|
+
- method or intervention
|
|
50
|
+
- comparison baseline
|
|
51
|
+
- evaluation metric
|
|
52
|
+
|
|
53
|
+
### 2. Plan the Search
|
|
54
|
+
|
|
55
|
+
Create a search protocol before collecting sources:
|
|
56
|
+
|
|
57
|
+
- databases to search
|
|
58
|
+
- date range
|
|
59
|
+
- languages
|
|
60
|
+
- publication types
|
|
61
|
+
- inclusion criteria
|
|
62
|
+
- exclusion criteria
|
|
63
|
+
- exact search strings
|
|
64
|
+
|
|
65
|
+
Minimum useful database set:
|
|
66
|
+
|
|
67
|
+
- PubMed for biomedical and life-sciences literature.
|
|
68
|
+
- arXiv for CS, math, physics, quantitative biology, and preprints.
|
|
69
|
+
- Semantic Scholar or Crossref for broad academic discovery.
|
|
70
|
+
- Domain-specific sources when relevant, such as clinical-trial registries,
|
|
71
|
+
patent databases, standards bodies, or official technical docs.
|
|
72
|
+
|
|
73
|
+
### 3. Search and Log Evidence
|
|
74
|
+
|
|
75
|
+
Keep a search log that makes the review reproducible:
|
|
76
|
+
|
|
77
|
+
```markdown
|
|
78
|
+
| Database | Date searched | Query | Filters | Results | Export |
|
|
79
|
+
| --- | --- | --- | --- | ---: | --- |
|
|
80
|
+
| PubMed | 2026-05-11 | `("CRISPR"[tiab] OR "Cas9"[tiab]) AND "sickle cell"[tiab]` | 2020:2026, English | 86 | PMID list |
|
|
81
|
+
| arXiv | 2026-05-11 | `CRISPR sickle cell gene editing` | q-bio, 2020:2026 | 9 | BibTeX |
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Save raw IDs, URLs, DOIs, abstracts, and notes separately from the final prose.
|
|
85
|
+
|
|
86
|
+
### 4. Deduplicate
|
|
87
|
+
|
|
88
|
+
Deduplicate in this order:
|
|
89
|
+
|
|
90
|
+
1. DOI
|
|
91
|
+
2. PMID or arXiv ID
|
|
92
|
+
3. exact title
|
|
93
|
+
4. normalized title plus first author and year
|
|
94
|
+
|
|
95
|
+
Record how many duplicates were removed.
|
|
96
|
+
|
|
97
|
+
### 5. Screen Sources
|
|
98
|
+
|
|
99
|
+
Screen in stages:
|
|
100
|
+
|
|
101
|
+
1. title
|
|
102
|
+
2. abstract
|
|
103
|
+
3. full text
|
|
104
|
+
|
|
105
|
+
For systematic work, record exclusion reasons:
|
|
106
|
+
|
|
107
|
+
- wrong population
|
|
108
|
+
- wrong intervention
|
|
109
|
+
- wrong outcome
|
|
110
|
+
- not primary research
|
|
111
|
+
- duplicate
|
|
112
|
+
- unavailable full text
|
|
113
|
+
- outside date range
|
|
114
|
+
|
|
115
|
+
### 6. Extract Data
|
|
116
|
+
|
|
117
|
+
Use a structured extraction table:
|
|
118
|
+
|
|
119
|
+
```markdown
|
|
120
|
+
| Study | Design | Population/Data | Method | Comparator | Outcome | Key finding | Limitations |
|
|
121
|
+
| --- | --- | --- | --- | --- | --- | --- | --- |
|
|
122
|
+
| Author Year | RCT/cohort/review/etc. | sample or corpus | method | baseline | measured outcome | result | caveat |
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
For technical papers, include dataset, benchmark, metric, baseline, and
|
|
126
|
+
reproducibility notes.
|
|
127
|
+
|
|
128
|
+
### 7. Synthesize
|
|
129
|
+
|
|
130
|
+
Group evidence by theme rather than summarizing papers one by one.
|
|
131
|
+
|
|
132
|
+
Useful synthesis lenses:
|
|
133
|
+
|
|
134
|
+
- strongest evidence
|
|
135
|
+
- conflicting evidence
|
|
136
|
+
- methodological weaknesses
|
|
137
|
+
- population or dataset limits
|
|
138
|
+
- recency and replication
|
|
139
|
+
- practical implications
|
|
140
|
+
- unanswered questions
|
|
141
|
+
|
|
142
|
+
Separate claims by confidence:
|
|
143
|
+
|
|
144
|
+
- **High confidence**: replicated, high-quality evidence across sources.
|
|
145
|
+
- **Medium confidence**: plausible but limited by sample, method, or recency.
|
|
146
|
+
- **Low confidence**: early, speculative, single-source, or weakly measured.
|
|
147
|
+
|
|
148
|
+
### 8. Verify Citations
|
|
149
|
+
|
|
150
|
+
Before finalizing:
|
|
151
|
+
|
|
152
|
+
- verify DOI, PMID, arXiv ID, or official URL
|
|
153
|
+
- check author names and publication year
|
|
154
|
+
- do not cite a paper for a claim it does not make
|
|
155
|
+
- mark preprints as preprints
|
|
156
|
+
- distinguish reviews from primary evidence
|
|
157
|
+
|
|
158
|
+
## Output Template
|
|
159
|
+
|
|
160
|
+
```markdown
|
|
161
|
+
# Literature Review: <Topic>
|
|
162
|
+
|
|
163
|
+
Generated: <date>
|
|
164
|
+
Review type: <narrative | scoping | systematic | meta-analysis>
|
|
165
|
+
Search window: <dates>
|
|
166
|
+
Databases: <list>
|
|
167
|
+
|
|
168
|
+
## Research Question
|
|
169
|
+
|
|
170
|
+
## Search Strategy
|
|
171
|
+
|
|
172
|
+
## Inclusion and Exclusion Criteria
|
|
173
|
+
|
|
174
|
+
## Evidence Summary
|
|
175
|
+
|
|
176
|
+
## Thematic Synthesis
|
|
177
|
+
|
|
178
|
+
## Gaps and Limitations
|
|
179
|
+
|
|
180
|
+
## References
|
|
181
|
+
|
|
182
|
+
## Search Log
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## Pitfalls
|
|
186
|
+
|
|
187
|
+
- Do not treat search snippets as evidence.
|
|
188
|
+
- Do not mix preprints, reviews, and primary studies without labeling them.
|
|
189
|
+
- Do not omit negative or conflicting findings.
|
|
190
|
+
- Do not claim systematic-review rigor without a reproducible protocol.
|
|
191
|
+
- Do not use a single database for a broad claim unless the scope is explicitly
|
|
192
|
+
limited to that database.
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: scholar-evaluation
|
|
3
|
+
description: Structured scholarly-work evaluation for papers, proposals, literature reviews, methods sections, evidence quality, citation support, and research-writing feedback.
|
|
4
|
+
origin: community
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Scholar Evaluation
|
|
8
|
+
|
|
9
|
+
Use this skill to evaluate academic or scientific work with a repeatable rubric.
|
|
10
|
+
|
|
11
|
+
## When to Use
|
|
12
|
+
|
|
13
|
+
- Reviewing a research paper, proposal, thesis chapter, or literature review.
|
|
14
|
+
- Checking whether claims are supported by cited evidence.
|
|
15
|
+
- Evaluating methodology, study design, analysis, or limitations.
|
|
16
|
+
- Comparing two or more papers for quality or relevance.
|
|
17
|
+
- Producing structured feedback for revision.
|
|
18
|
+
|
|
19
|
+
## Evaluation Scope
|
|
20
|
+
|
|
21
|
+
Start by identifying the artifact:
|
|
22
|
+
|
|
23
|
+
- empirical research paper
|
|
24
|
+
- theoretical paper
|
|
25
|
+
- technical report
|
|
26
|
+
- systematic or narrative literature review
|
|
27
|
+
- research proposal
|
|
28
|
+
- thesis or dissertation chapter
|
|
29
|
+
- conference abstract or short paper
|
|
30
|
+
|
|
31
|
+
Then choose scope:
|
|
32
|
+
|
|
33
|
+
- **comprehensive**: all rubric dimensions
|
|
34
|
+
- **targeted**: one or two dimensions, such as method or citations
|
|
35
|
+
- **comparative**: rank multiple works against the same rubric
|
|
36
|
+
|
|
37
|
+
## Rubric
|
|
38
|
+
|
|
39
|
+
Score each applicable dimension from 1 to 5:
|
|
40
|
+
|
|
41
|
+
- 5: excellent; clear, rigorous, and publication-ready
|
|
42
|
+
- 4: good; minor improvements needed
|
|
43
|
+
- 3: adequate; meaningful gaps but usable
|
|
44
|
+
- 2: weak; substantial revision needed
|
|
45
|
+
- 1: poor; major validity or clarity problems
|
|
46
|
+
|
|
47
|
+
Use `N/A` for dimensions that do not apply.
|
|
48
|
+
|
|
49
|
+
### 1. Problem and Research Question
|
|
50
|
+
|
|
51
|
+
- Is the problem clear and specific?
|
|
52
|
+
- Is the contribution meaningful?
|
|
53
|
+
- Are scope and assumptions explicit?
|
|
54
|
+
- Does the question match the claimed contribution?
|
|
55
|
+
|
|
56
|
+
### 2. Literature and Context
|
|
57
|
+
|
|
58
|
+
- Is relevant prior work covered?
|
|
59
|
+
- Does the work synthesize rather than merely list sources?
|
|
60
|
+
- Are gaps accurately identified?
|
|
61
|
+
- Are recent and foundational sources balanced?
|
|
62
|
+
|
|
63
|
+
### 3. Methodology
|
|
64
|
+
|
|
65
|
+
- Does the method answer the research question?
|
|
66
|
+
- Are design choices justified?
|
|
67
|
+
- Are variables, datasets, participants, or materials described clearly?
|
|
68
|
+
- Could another researcher reproduce the work?
|
|
69
|
+
- Are ethical and practical constraints acknowledged?
|
|
70
|
+
|
|
71
|
+
### 4. Data and Evidence
|
|
72
|
+
|
|
73
|
+
- Are data sources credible and appropriate?
|
|
74
|
+
- Is sample size or corpus coverage adequate?
|
|
75
|
+
- Are inclusion, exclusion, and preprocessing decisions documented?
|
|
76
|
+
- Are missing data and bias risks discussed?
|
|
77
|
+
|
|
78
|
+
### 5. Analysis
|
|
79
|
+
|
|
80
|
+
- Are statistical, qualitative, or computational methods appropriate?
|
|
81
|
+
- Are baselines and controls fair?
|
|
82
|
+
- Are uncertainty, sensitivity, or robustness checks included when needed?
|
|
83
|
+
- Are alternative explanations considered?
|
|
84
|
+
|
|
85
|
+
### 6. Results and Interpretation
|
|
86
|
+
|
|
87
|
+
- Are results clearly presented?
|
|
88
|
+
- Do claims stay within the evidence?
|
|
89
|
+
- Are figures, tables, and metrics understandable?
|
|
90
|
+
- Are negative or null results handled honestly?
|
|
91
|
+
|
|
92
|
+
### 7. Limitations and Threats to Validity
|
|
93
|
+
|
|
94
|
+
- Are limitations specific rather than generic?
|
|
95
|
+
- Are internal, external, construct, and conclusion-validity risks addressed?
|
|
96
|
+
- Does the paper distinguish speculation from demonstrated results?
|
|
97
|
+
|
|
98
|
+
### 8. Writing and Structure
|
|
99
|
+
|
|
100
|
+
- Is the argument easy to follow?
|
|
101
|
+
- Are sections organized around the research question?
|
|
102
|
+
- Are definitions and notation clear?
|
|
103
|
+
- Is the tone precise and scholarly?
|
|
104
|
+
|
|
105
|
+
### 9. Citations
|
|
106
|
+
|
|
107
|
+
- Do cited papers support the claims attached to them?
|
|
108
|
+
- Are primary sources used where possible?
|
|
109
|
+
- Are reviews labeled as reviews?
|
|
110
|
+
- Are preprints labeled as preprints?
|
|
111
|
+
- Are citation metadata and links correct?
|
|
112
|
+
|
|
113
|
+
## Review Process
|
|
114
|
+
|
|
115
|
+
1. Read the abstract, introduction, figures, and conclusion for claimed
|
|
116
|
+
contribution.
|
|
117
|
+
2. Read methods and results for evidence quality.
|
|
118
|
+
3. Check the strongest claims against cited sources.
|
|
119
|
+
4. Score each applicable dimension.
|
|
120
|
+
5. Separate critical blockers from revision suggestions.
|
|
121
|
+
6. End with concrete next edits.
|
|
122
|
+
|
|
123
|
+
## Output Template
|
|
124
|
+
|
|
125
|
+
```markdown
|
|
126
|
+
# Scholar Evaluation: <Artifact>
|
|
127
|
+
|
|
128
|
+
## Overall Assessment
|
|
129
|
+
|
|
130
|
+
- Overall score: <1-5 or N/A>
|
|
131
|
+
- Confidence: <high | medium | low>
|
|
132
|
+
- Summary: <3-5 sentences>
|
|
133
|
+
|
|
134
|
+
## Dimension Scores
|
|
135
|
+
|
|
136
|
+
| Dimension | Score | Evidence | Revision priority |
|
|
137
|
+
| --- | ---: | --- | --- |
|
|
138
|
+
| Problem and question | | | |
|
|
139
|
+
| Literature and context | | | |
|
|
140
|
+
| Methodology | | | |
|
|
141
|
+
| Data and evidence | | | |
|
|
142
|
+
| Analysis | | | |
|
|
143
|
+
| Results and interpretation | | | |
|
|
144
|
+
| Limitations | | | |
|
|
145
|
+
| Writing and structure | | | |
|
|
146
|
+
| Citations | | | |
|
|
147
|
+
|
|
148
|
+
## Critical Issues
|
|
149
|
+
|
|
150
|
+
## Recommended Revisions
|
|
151
|
+
|
|
152
|
+
## Evidence Checks Needed
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
## Pitfalls
|
|
156
|
+
|
|
157
|
+
- Do not use the score as a substitute for concrete feedback.
|
|
158
|
+
- Do not penalize a paper for omitting a dimension outside its scope.
|
|
159
|
+
- Do not treat citation count, venue, or author reputation as proof of quality.
|
|
160
|
+
- Do not accept unsupported claims just because they appear in the abstract.
|