One-click install
npx skills add https://github.com/BeOnAuto/auto-agent --skill auto-workspace
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auto-workspace
Source: https://github.com/BeOnAuto/auto-agent/tree/main/skills/workspace
Command: npx skills add https://github.com/BeOnAuto/auto-agent --skill auto-workspace

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It helps you keep your coding agent aligned with the Auto workspace model so changes are made against the authoritative Narrative-Driven Development structure instead of drifting from it.

Core Features & Use Cases

  • Fetch the current workspace model: Retrieves the full model as JSON, letting you inspect the domain, narratives, scenes, moments, and messages before editing.
  • Send validated updates back to Auto: Submits a modified model and receives the server-corrected version after structural validation.
  • Track incremental changes: Pulls added/removed/updated parts since the last check to support safe iteration and external edits.
  • Use NDD hierarchy reasoning: Guides work top-down through Domain → Narrative → Scene → Moment for correct, spec-aligned updates.

Use Case Example

When you update an app’s narrative in Auto (e.g., a new scene or modified UI moment), you use this Skill to fetch the latest model, apply the corresponding changes, and send them back so Auto validates and corrects any structural issues.

Quick Start

Use the auto_get_model tool to fetch the latest Auto workspace model, update the relevant narratives/scenes/moments, then apply the changes back with auto_send_model.

Frequently Asked Questions about auto-workspace

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I synchronize AI agent edits with an Auto workspace model?

To synchronize AI agent edits with an Auto workspace model, you fetch the latest model state, apply your narrative or scene modifications, and submit them back to Auto for structural validation and server-side correction.

What is Narrative-Driven Development workspace model synchronization?

Narrative-Driven Development workspace model synchronization is the process of aligning AI coding edits with the authoritative Auto model hierarchy, ensuring changes applied to domains, narratives, scenes, and moments do not drift from the project spec.

How do I track incremental changes in an Auto workspace model?

You track incremental changes in an Auto workspace model by pulling added, removed, or updated narratives, scenes, moments, and messages since your last check to support safe iteration and identify externally updated content.

How do I validate structural updates in a Narrative-Driven Development model?

You validate structural updates in a Narrative-Driven Development model by submitting the modified workspace model back to Auto, which performs structural validation and returns the server-corrected version to ensure spec alignment.

Does Auto workspace model synchronization require a specific editing sequence?

Yes, Auto workspace model synchronization requires calling the fetch model function before modifications, submitting the model after edits, and optionally detecting externally updated narratives to maintain an authoritative state across collaboration cycles.

Why do my Auto workspace model updates keep drifting from the authoritative structure?

Your Auto workspace model updates drift when changes are not synchronized against the authoritative Narrative-Driven Development hierarchy, requiring you to fetch the latest model, apply edits top-down through the hierarchy, and submit them back for server correction.