"""Default template files seeded into new App Builder workspaces.""" import os _SKILL_PATH = os.path.join(os.path.dirname(__file__), "view_builder_skill.md") with open(_SKILL_PATH) as _f: VIEW_BUILDER_SKILL = _f.read() VIEW_TEMPLATE_INDEX = """\ App

Ready

Describe what you want to build and the agent will update this app.

""" VIEW_TEMPLATE_SCHEMA = """\ { "type": "object", "properties": {}, "required": [] } """ VIEW_TEMPLATE_META = """\ { "name": "", "description": "" } """ VIEW_TEMPLATE_FILES = { "index.html": VIEW_TEMPLATE_INDEX, "schema.json": VIEW_TEMPLATE_SCHEMA, "meta.json": VIEW_TEMPLATE_META, }