Replies: 2 comments
|
|
Thanks for reporting this and for the detailed reproduction. The failure mode is real, and we have implemented the smallest safe fix on For Antigravity only, a bare install or
The MCP deliberately selects and validates skills but does not install them. This keeps the flow inspectable: the agent chooses the minimal set, the user reviews the dry run, and the existing installer performs the exact installation. We did not add automatic The error message also links the existing Windows recovery guide. The change is merged and fully green on |
Uh oh!
There was an error while loading. Please reload this page.
What problem are you trying to solve?
When running a full installation via
npx agentic-awesome-skills --antigravity, the library copies all 1,980+ skills directly into the active.agents/skillsfolder. In Antigravity IDE, this causes the agent to attempt to parse every single skill on startup, immediately exhausting the token context window. The IDE crashes on launch and enters an infinite restart loop with the error: "TrajectoryChatConverter: could not convert a single message before hitting truncation." Currently, once caught in this loop, the app cannot start, and users are stuck. Furthermore, loading all metadata upfront leads to "context rot" and distraction (false positive tool activations).Proposed idea
We propose two changes:
On-Demand Skill Retrieval Strategy:
Introduce an
--on-demandinstaller flag. This clones the full library to a static reference path but keeps the active~/.agents/skillsdirectory empty. The agent's instructions (using rules in GEMINI.md) look upskills_index.jsonto find the correct skill ID and read only that singleSKILL.mddynamically when needed, releasing it afterward. This results in zero token overhead on startup.Windows Recovery Utility:
Provide a standardized PowerShell recovery script (e.g.
Fix-AntigravityCrash.ps1) in the repository. This script clears the corrupted browser session/local storage databases causing the startup loop without touching project files, allowing users to recover instantly.Real use cases
aas-feedback-report.txt
Related skills, tools, or prior art
Are you willing to help build this?
No, just sharing the idea
Before posting
All reactions