You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
└── open-model/ # Fine-tuning third-party open models
25
-
└── SKILL.md
26
-
```
27
-
28
9
### Primary Router: `vertex-ai`
29
10
The entry point for any general Vertex AI task. The `vertex-ai/SKILL.md` file acts as a traffic controller. When an agent receives a generic request (e.g., "I want to use Vertex AI"), it reads this file to determine the next step based on a Decision Tree:
30
11
-**Deploying a model** → Routes to `vertex-deploy`
@@ -58,6 +39,27 @@ Agent skills are essentially specialized prompt contexts. When building agents (
58
39
3.**Navigate:** The LLM actively uses file-reading tools to navigate to the correct underlying `SKILL.md` (e.g., `skills/vertex-inference/SKILL.md`).
59
40
4.**Execute:** The agent reads the highly-detailed instructions, caveats, and code snippets in the sub-skill to fulfill the user's request.
60
41
42
+
## Installation & Usage
43
+
44
+
To use these skills with your AI agent:
45
+
46
+
1.**Clone the Repository**: Clone this repository to your local development environment or production workspace.
47
+
2.**Expose to Agent**: Ensure the `skills/` directory is accessible to your AI assistant. This typically involves mounting or copying the folder into your agent's workspace (e.g., `.agents/skills/` or equivalent custom routing directory).
48
+
3.**Trigger the Skills**: Prompt your agent with a Vertex AI related task. The agent should automatically scan for skills, find the primary `vertex-ai/SKILL.md` router, and follow the documented workflow.
49
+
50
+
### Example Prompts
51
+
52
+
Here are some example prompts you can use to trigger the routing logic and test the skills:
53
+
54
+
**Testing Deployment:**
55
+
> "I want to deploy a Llama 3.3 model from Model Garden to a Vertex AI endpoint. Can you help me write the script?"
56
+
57
+
**Testing Inference (Gen AI SDK):**
58
+
> "Can you show me how to connect to Vertex AI and get text embeddings using the new Gemini SDK?"
59
+
60
+
**Testing Tuning:**
61
+
> "I need to fine-tune a Gemini 1.5 Pro model using Vertex AI. Where should I start?"
62
+
61
63
## How to Add a New Skill
62
64
63
65
If Vertex AI introduces a new capability (e.g., Vertex AI Search or Vertex AI Pipelines) and you want to teach the agent to handle it:
0 commit comments