Add AQUA skills directory for coding agents#1352
Merged
Conversation
Adds a skills/ directory at the repo root with 8 skills covering the full AQUA (AI Quick Actions) LLM lifecycle: - aqua-model-lifecycle: register, list, get models (HF, OSS, GGUF, BYOC) - aqua-deployment: single/multi/stacked deployments, vLLM config, tool calling, shape recommender, LMCache, private endpoints, batch inference - aqua-finetuning: LoRA fine-tuning, dataset formats, hyperparams - aqua-evaluation: BERTScore, ROUGE, perplexity evaluation + sample datasets - aqua-metrics: Prometheus + Grafana monitoring via OCI Container Instance - aqua-troubleshooting: OOM, auth, capacity, container error patterns - aqua-cli: complete ads aqua CLI reference with parameter tables - oci-data-science: Jobs, Pipelines, Model Catalog, LangChain, auth Each skill follows progressive disclosure: lean SKILL.md core with heavy content in references/ and examples/ subdirectories. All reference files are linked from their SKILL.md. Content sourced from ads/aqua/ source and oracle-samples/oci-data-science-ai-samples official docs. Signed-off-by: Aryan Gosaliya <aryan.gosaliya@oracle.com>
e2330bb to
b446d86
Compare
mrDzurb
approved these changes
Feb 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Coding agents are increasingly being used to help developers write, debug, and operate software — and ML engineers are no exception. Developers building on OCI AI Quick Actions (AQUA) are already using coding agents to help them register models, configure deployments, write fine-tuning jobs, and debug errors. However, without structured context about AQUA's APIs, CLI, and workflows, agents frequently hallucinate parameter names, miss required fields, or suggest patterns that don't match the actual SDK.
A
skills/directory solves this by giving coding agents a structured, authoritative source of truth about AQUA that they can load on demand — reducing hallucination, cutting back-and-forth, and letting developers stay in flow instead of context-switching to docs.Summary
Adds a
skills/directory at the repo root containing 8 skills that cover the full AQUA (AI Quick Actions) LLM lifecycle. Skills follow progressive disclosure: leanSKILL.mdcore files with heavy content offloaded toreferences/andexamples/subdirectories. All reference files are explicitly linked from theirSKILL.md.Skills Added
aqua-model-lifecycleaqua-deploymentaqua-finetuningaqua-evaluationaqua-metricsaqua-troubleshootingaqua-cliads aquaCLI reference with full parameter tablesoci-data-scienceReference Files
aqua-deployment/references/shapes.md— GPU shape table, model fit guide, shape recommender CLI/SDK docsaqua-deployment/references/lmcache.md— KV cache persistence (LMCache) for multi-turn workloadsaqua-deployment/references/private-endpoints.md— Private endpoint creation and usageaqua-deployment/references/batch-inferencing.md— Job-based offline batch inference with vLLMaqua-model-lifecycle/references/containers.md— Current container versions (vLLM 0.11.0, TGI 3.2.1, Llama-cpp 0.3.7)aqua-model-lifecycle/references/tgi-migration.md— Migrating TGI-registered models to vLLMaqua-cli/references/params.md— Exhaustive parameter tables for all CLI command groupsaqua-evaluation/examples/— Official oracle-samples evaluation datasets (no-sys-message + with-sys-message)aqua-finetuning/examples/— Dataset format examples (instruction, conversational, multimodal)Content Sources
ads/aqua/source code (API signatures, entity fields, CLI entry points)oracle-samples/oci-data-science-ai-samplesofficial AI Quick Actions documentation