Skip to main content
comet-ml
Perfil de criador do GitHub

comet-ml

Visão por repositório de 42 skills coletadas em 8 repositórios do GitHub.

skills coletadas
42
repositórios
8
atualizado
28 de ago. de 2026
explorador de repositórios

Repositórios e skills representativas

write-docs
sem classificação

Authoring Fern MDX documentation pages for the Opik docs site, plus release-note and changelog routing. Use when writing or updating pages under apps/opik-documentation/documentation/fern/, drafting PR descriptions, or picking the right changelog surface.

28 de ago. de 2026
writing-e2e-tests
sem classificação

Use when a developer wants to add, write, or create an end-to-end test for an Opik feature, page, or branch — e.g. "add an e2e test for the experiments comparison page", "write a test for the feature I just built", "e2e test for this branch", "cover the…

27 de ago. de 2026
analytics-instrumentation
sem classificação

Add product analytics (BI) events to Opik features. Use when wiring events on the frontend, the backend, or the Python SDK - all three report through Segment to PostHog.

25 de ago. de 2026
explore-feature
sem classificação

Use when a developer wants an e2e test covering a change they just made — e.g. "explore this feature", "add a test for my PR", "cover the feature in PR

25 de ago. de 2026
documentation
sem classificação

Feature documentation and release notes patterns. Use when documenting changes, writing PR descriptions, or preparing releases.

25 de ago. de 2026
opik-integrations
Desenvolvedores de software

Build, update, test, and document Opik SDK integrations (Python & TypeScript). Use when adding a new framework/provider integration under sdks/python/src/opik/integrations or sdks/typescript/src/opik/integrations, updating an existing one, or verifying that…

25 de ago. de 2026
query-performance
Desenvolvedores de software

Validate what a ClickHouse query actually costs before merging it — at production scale through read-only environment access, or on a revived Testcontainers dataset extrapolated to 20k/500k/1M entities. Use when a DAO query changes, when an endpoint is slow,…

14 de ago. de 2026
python-sdk
Desenvolvedores de software

Python SDK patterns for Opik. Use when working in sdks/python, on SDK APIs, integrations, or message processing.

6 de ago. de 2026
Mostrando 8 de 19 skills coletadas.
compare-runs
Desenvolvedores de software

Pull 2+ Comet experiments via the Comet MCP server (or `comet_ml.API` as fallback) and render a side-by-side markdown table of metrics and hyperparameters. Highlights the winning value per metric row. Use when the user asks to "compare", "diff", "which run…

28 de mai. de 2026
evaluate-run
Desenvolvedores de software

Query a single Comet experiment via the Comet MCP server (or `comet_ml.API` as a fallback), fetch its metrics and parameters, and compare against thresholds (inline or from `thresholds.yaml`). Reports pass/fail per metric with a markdown table. Use when the…

28 de mai. de 2026
promote-model
Desenvolvedores de software

Manage a Comet Model Registry version's status and/or tags via `scripts/registry_mutate.py`. Status is a single-value enum (None / Development / Staging / QA / Production by default; workspace-configurable). Tags are a multi-value free-form list. Confirms…

28 de mai. de 2026
run-training
Desenvolvedores de software

Execute `make train`, capture output, and surface the Comet experiment URL, registered models, logged artifacts, and final metrics. Use when the user asks to "run a training run", "train the model", or "kick off an experiment". Pure shell wrapper — does not…

28 de mai. de 2026
update-changelog
Desenvolvedores de software

Diff HEAD against main, group the changes by Keep-a-Changelog type (Added/Changed/Fixed/...), propose one-line entries under [Unreleased] in CHANGELOG.md, then edit the file inline. User reviews the diff and stages it themselves. Use before any commit that…

28 de mai. de 2026
update-makefile
Desenvolvedores de software

Audit the Makefile against the tooling actually installed (ruff, pytest, mypy, etc.) and the scripts under src/<module>/, then propose missing targets or fix stale ones. Use when adding a new tool or script that should be invokable via make. Preserves…

28 de mai. de 2026
update-readme
Desenvolvedores de software

Regenerate the auto-generated sections of README.md (project tree, common-tasks table) to reflect the current state of pyproject.toml, the Makefile, and src/. Use when project structure changes, deps change, or those sections drift from reality. Preserves any…

28 de mai. de 2026
opik-explain
sem classificação

Root-cause a specific Opik trace, or a pattern across traces, and return a grounded explanation. Uses the hosted Opik MCP when it is connected, and falls back to SDK scripting otherwise. Returns the root cause, the evidence spans as clickable Opik UI links,…

28 de ago. de 2026
opik-diagnose
sem classificação

Surface the Opik traces worth a developer's attention, ranked by signal — errors, failed tool calls, latency, regressions, and low online-eval scores — plus Diagnostics issues. Reads live/production traces via the SDK (search_traces and agent_insights) and…

28 de ago. de 2026
opik-evaluate
sem classificação

Build an LLM evaluation and run it against your app, returning an experiment with scores. Covers datasets, LLM judges, RAG evaluation, synthetic data, error analysis, and validating evaluators against human labels. Use when the user wants to measure or…

28 de ago. de 2026
opik-instrument
sem classificação

Add Opik tracing to an existing app and verify a real trace lands. Installs the Opik package, detects the language and LLM framework, adds the minimum tracing, runs a safe representative path, confirms a trace in Opik, and returns the trace link. Use for…

28 de ago. de 2026
opik
sem classificação

Reference for the Opik SDK — tracing, span types, framework integrations, threads, and the prompt library (Python, TypeScript, REST). Use for "what span types exist", "how do I flush", "track_openai", "add OpikTracer", "version a prompt". To instrument a repo…

28 de ago. de 2026
scaffold-example
Desenvolvedores de software

Scaffold a brand-new Opik example in this repo from a canonical template under templates/ — either a full use-case demo (templates/use-case-template/) or a standalone utility script (templates/script-template/). Use this whenever the user wants to create,…

30 de jun. de 2026
add-dataset-items
Desenvolvedores de software

Add new items to an Opik evaluation dataset in this repo. Use when the user says "add a case to the dataset", "add items to the Opik dataset", "extend the eval dataset", "seed the dataset", "add test data for the eval", or names new query/expected-output…

22 de jun. de 2026
add-eval-suite-items
Analistas de garantia de qualidade de software e testadores

Add new items (plain-English assertions) to an Opik test suite in this repo. Use when the user says "add an assertion", "add a test case to the suite", "extend the eval suite", "add a check to the test suite", "the model should also be tested for X", or…

22 de jun. de 2026
run-evals
Desenvolvedores de software

Run an Opik evaluation for an example in this repo — metrics (evaluate) and/or assertions (run_tests) against a dataset/test suite. Use when the user says "run the eval", "evaluate the example", "run the test suite", "score the model", "check the metrics",…

22 de jun. de 2026
run-optimizations
Desenvolvedores de software

Run an Opik prompt optimization (opik-optimizer) for an example in this repo, and optionally promote the result to the Prompt Library. Use when the user says "optimize the prompt", "run the optimizer", "improve the prompt", "run Optimization Studio", "tune…

22 de jun. de 2026
Mostrando 8 de 8 repositórios
Todos os repositórios foram exibidos