My First Experience Creating Antigravity Skills — DeepSeek…
    Neura MarketNeura Market/DeepSeek
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsGamesBlogVideosGuidesCoursesCommunityTrending
    DeepSeekBlogMy First Experience Creating Antigravity Skills
    Back to Blog
    My First Experience Creating Antigravity Skills
    antigravity

    My First Experience Creating Antigravity Skills

    Shir Meir Lador March 17, 2026
    0 views

    Experimenting with Agent skills for the first time, feeling empowered!   Last week, I was at an...

    <center><small>Experimenting with Agent skills for the first time, feeling empowered!</small></center> &nbsp; Last week, I was at an event where we taught developers how to build [MCP servers](https://goo.gle/aaiwcr-1), [agents](http://goo.gle/aaiwcr-2), and [deploy open models](http://goo.gle/aaiwcr-3) to [Google Cloud Run](https://docs.cloud.google.com/run/docs?utm_campaign=CDR_0x91b1edb5_default_b491641592&utm_medium=external&utm_source=blog). After the session, one of the developers shared something that really stuck with me: he was already using our content to create specialized [**Skills**](https://antigravity.google/docs/skills) to share with his entire team.

    I got inspired and decided it was time to dive into Agent Skills. During my last project, the dev-signal agent, I had a lot of learnings about how to bring agents and AI applications to production in a robust and scalable manner. I thought, this is a great opportunity to give my favorite coding agent, Google’s Antigravity (Google’s “agent-first” IDE), those skills so that going forward, it will just do it for me!

    In this post, I’ll walk through how I built the 13 production skills in this repository and the patterns behind them.

    ##What are Agent Skills?

    As Romin Irani explains in “Getting Started with Google Antigravity Skills”, skills represent a shift from monolithic context loading to Progressive Disclosure.

    Agents get “overwhelmed” when providing them too many tools all at once (a phenomenon known as “Tool Bloat”), to solve for that, Skills allow the agent to “load” specialist knowledge only when needed. When you ask an agent to “evaluate a shadow revision,” it will figure out it will need to leverage the Shadow Deployer skill as context for this operation.

    ##Workspace vs. Global Scope

    In Antigravity, you can manage these skills in two distinct ways depending on how you want to use them:

    • Workspace Scope: Located in .agent/skills/ within your project root. These are specific to your project and can be committed to GitHub so your entire team can benefit from the same production patterns.
    • Global Scope: Located in ~/.gemini/antigravity/skills/. These are your personal utilities that stay with you across every project you work on.

    ##How I built the skills

    Following the principles in Daniela Petruzalek’s “Building Agent Skills with skill-creator”, I took a “methodology-first” approach. I used the existing dev-signal blog series I’ve been working on and the codebase itself as core context, asking Antigravity to identify and codify the unique skills needed to build a production agent on Google Cloud.

    For some of the more specialized areas, I provided additional context with patterns I’d like to follow, such as the agent evaluation codelab and blog and the agent security codelab, both written by my awesome team.

    These 13 skills provide Antigravity (or any developer using them) the crucial toolkit of a Google Cloud Production Engineer. I’m currently finalizing a detailed, step-by-step walkthrough of the dev-signal agent which will be published on the Google Cloud Blog very soon! (follow me for future updates)

    In the meantime, you don’t have to wait — the full repository and the skills are available for you to explore and leverage in your own projects today.

    Here is the full inventory of the skills:

    ##🏗️ Production Agent

    • adk-memory-bank-initializer: Long-term state logic with Vertex AI Memory Bank.
    • agent-containerizer: Mixed-runtime Dockerfiles (Python + Node.js).
    • cloud-run-agent-architect: Least-privilege Terraform for Cloud Run.
    • gcp-production-secret-handler: In-memory secret fetching pattern (Secret Manager).
    • mcp-connector-generator: Standardized MCP connection logic.

    ##📊 Evaluation

    • gcp-agent-eval-engine-runner: Parallel inference and reasoning trace capture.
    • gcp-agent-eval-metric-configurator: Setup for Grounding and Tool Use rubrics.
    • gcp-agent-golden-dataset-builder: Tools for building datasets with reference trajectories.
    • gcp-agent-shadow-deployer: “Dark Canary” deployment scripts with revision tagging.
    • gcp-agent-tool-trajectory-evaluator: Custom Python metrics for Precision and Recall.

    ##🛡️ Security

    • gcp-agent-model-armor-shield: Intelligent firewall (Prompt Injection, RAI, Malicious URL filters).
    • gcp-agent-safety-gatekeeper: Python integration pattern (safety_util.py) for sanitizing user inputs.
    • gcp-agent-sdp-template-factory: Terraform for Sensitive Data Protection (PII/Secret redaction).

    By codifying these patterns to production skills, Antigravity can now leverage these automatically in my day to day development. I hope you find these as helpful as I do!

    ##Pro tip - self improving skills!

    Because these skills were AI-generated, they might not work perfectly for your specific environment on the first try. But that’s actually the best part of working with an agentic IDE. If a skill doesn’t work well for you, don’t just manually fix the code, let the coding agent figure it out. Once it finds the solution, you can ask it to update the corresponding SKILL.md with the learned workflow. This will capture the corrected workflow for the future, ensuring the agent doesn’t repeat the mistake while saving you tokens and time on the next run. Think of these as living documents that actively improve as you build.

    Ready to get started? Clone the repository and add these skills to your Workspace or Global Scope to start building your own production-ready agents. Learn more about Agent skills.

    Follow me on LinkedIn and X for updates on my next blogs and videos.

    Tags

    antigravityaigooglecloudagents

    Comments

    More Blog

    View all
    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught megemma

    Five Gemma-4 models, one accelerator: what porting E2B 31B to AWS Inferentia2 taught me

    I ported the whole Gemma-4 family — E2B, E4B, 12B, 31B, and the 26B-A4B MoE — to run on...

    X
    xbill
    Hey DEV, I'm Tobore. Let's actually connect.community

    Hey DEV, I'm Tobore. Let's actually connect.

    Hey DEV, I'm Tobore. Let's actually connect. I've been on here for a while now, mostly writing and...

    L
    Laurina Ayarah
    I burned through thousands of AI tokens. Then a friend did it for freeai

    I burned through thousands of AI tokens. Then a friend did it for free

    (yep, kinda clickbait, just for the funsies 😊) At the beginning of the year, I relaunched my...

    P
    Paulo Henrique
    Claude might be saturating your machineai

    Claude might be saturating your machine

    My laptop was sitting idle with the fan at full tilt. Nothing was running that I knew of. The culprit...

    S
    Sidhant Panda
    Automated GitHub Code Reviews Using Google Geminigithubactions

    Automated GitHub Code Reviews Using Google Gemini

    I Built a Thing! TL;DR — Google Gemini-based Pull Request reviews and Issue Triaging for...

    D
    Darren "Dazbo" Lester
    What is an "agentic harness," actually?ai

    What is an "agentic harness," actually?

    I've been hearing the word "harness" thrown around a lot lately. I assumed it just meant "the IDE" or...

    T
    Tilde A. Thurium

    Stay up to date

    Get the latest DeepSeek prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for DeepSeek and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Neura Market

    Custom AI Systems & Services

    Our team of experienced AI builders will help build custom AI systems, workflows, and solutions for your business.

    Request custom work

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this DeepSeek resource

    • Automate Your E-commerce Chat Experience with RAG Agentn8n · $19.99 · Related topic
    • Provide Real-time Updates for Notion Databases via Webhooks with Supabasen8n · $14.99 · Related topic
    • Evaluate AI Agent Response Correctness with OpenAI and RAGAS Methodologyn8n · $14.99 · Related topic
    • Real-time Chat Translation with DeepLn8n · $4.99 · Related topic
    Browse all workflows