Files
mp-silma-ai-aide/manifest.llm.json
T

154 lines
7.4 KiB
JSON
Raw Normal View History

2026-07-17 14:08:03 -05:00
{
"schema_version": "1.0",
"name": "mp-silma-ai-aide",
2026-07-17 15:45:30 -05:00
"description": "A Vite and TypeScript Chrome extension side panel for Gitea-backed Silma AI aide workflows.",
2026-07-17 14:08:03 -05:00
"project_type": "chrome-extension",
"language": "typescript",
"package_manager": "npm",
2026-07-17 14:16:54 -05:00
"deployable_output": {
"path": "dist/",
"type": "chrome-extension",
"description": "Build output is self-contained and can be loaded directly as an unpacked Chrome extension."
},
2026-07-17 14:08:03 -05:00
"entrypoints": {
2026-07-17 15:45:30 -05:00
"side_panel_html": "index.html",
"side_panel_script": "src/main.ts",
"background_service_worker": "src/background.ts",
2026-07-17 14:08:03 -05:00
"state_store": "src/store.ts",
"api_client": "src/api.ts",
"local_context_types": "src/localContext.ts",
2026-07-17 14:08:03 -05:00
"vite_config": "vite.config.ts",
2026-07-17 15:45:30 -05:00
"extension_icons": "public/icons/",
"local_context": "public/local-context.json",
"local_context_generator": "scripts/generate-local-context.mjs",
2026-07-17 14:08:03 -05:00
"generated_manifest": "dist/manifest.json"
},
"ui": {
2026-07-17 15:45:30 -05:00
"shell": "Chrome side panel",
"menu_items": [
{
"name": "Add URL",
2026-07-17 15:45:30 -05:00
"enabled": "when active tab base URL is not already known"
},
{
"name": "URLs",
"enabled": true
},
{
"name": "Gitea Repos",
"enabled": true
},
{
"name": "Workspaces",
"enabled": true
},
2026-07-18 10:07:26 -05:00
{
"name": "Agents",
"enabled": true
},
2026-07-18 10:50:04 -05:00
{
2026-07-18 13:26:09 -05:00
"name": "Issues",
2026-07-18 10:50:04 -05:00
"enabled": true
},
{
"name": "Add Issue",
2026-07-17 15:45:30 -05:00
"enabled": "when active tab base URL is known and linked to a Gitea repo"
}
],
"repo_ordering": "Gitea repos are ordered by latest default-branch commit timestamp.",
2026-07-18 14:09:46 -05:00
"agents_behavior": "The Agents view manages persisted agent files. The initial agent is GLOBAL AGENT backed by AGENTS.md, and agent markdown supports {{git}}, {{repo}}, {{workspace}}, {{url}}, {{baseUrl}}, {{profile}}, and {{issue}} template variables. The default global agent tells downstream agents to close the Gitea issue after pushing the implementation and to leave a Gitea issue comment when delivery is blocked, partial, or risky; persisted built-in global agents should pick up these required completion rules without replacing unrelated custom text.",
2026-07-17 15:45:30 -05:00
"add_url_behavior": "The user must pick either a workspace or a Gitea repo. The app infers the linked counterpart from local context and stores the URL link in chrome.storage.local.",
2026-07-17 15:51:15 -05:00
"delete_url_behavior": "URLs can be deleted from the list. User-added URLs are removed from chrome.storage.local; generated known URLs are hidden by storing their base URL in silmaAide.deletedUrlBases.",
2026-07-18 13:01:36 -05:00
"add_issue_behavior": "The form shows the target repo and active URL for the active known URL, lets the user select an agent file and issue labels, captures visible-tab screenshots with thumbnails, accepts accumulated file attachments, creates a Gitea issue with the selected labels, and uploads the rendered agent file plus all screenshots/files as issue assets. Label options are Change Request, Idea, Tabitha, Orson, Belisarius, Ozymandias, and Ready; new issues default to Change Request. Captured screenshots can be expanded, removed, or cropped with a wider no-horizontal-scroll draggable/resizable crop panel. Issue bodies include Chrome profile: Silma and the selected agent. The view intentionally omits the redundant Add Issue header copy.",
2026-07-18 13:26:09 -05:00
"open_issues_behavior": "Issues lists recent issues ordered by creation time. The Only current repo checkbox defaults to true and limits rows to the active URL's linked Gitea repo; disabling it loads recent issues from all repos already loaded by the extension. Status filtering uses Open and Closed checkboxes as a multiselect with Open checked by default. Label filtering defaults to empty and filters visible rows by a selected known label.",
"issue_comment_behavior": "Issues owns existing issue follow-up. Selecting an issue shows a direct Open in Gitea link, a placeholder Send to Codex button that logs the selected issue payload, editable issue subject/content/label fields that save against the selected issue repo with Gitea content-version readback verification and through Gitea's issue labels endpoint, issue attachments, direct attachment upload controls, comment chain, and a comment form that accepts text, screenshots, and file attachments, uploads attachments as issue assets, and submits a Gitea issue comment with attachment links. Clicking the selected issue row again or the detail close control collapses the detail panel. Existing issue attachments can be deleted, and additional selected-issue screenshots/files can be uploaded directly as issue assets without creating a comment. Issue rows can delete the issue after confirmation. Draft text-entry updates must not blur focused Add Issue, selected issue edit, Issues comment, or Agents editor controls.",
"known_urls": [
{
"url": "http://100.66.226.22:23030/",
"workspace": "/Users/Tabitha/.openclaw/workspace_Father/workspace_Data",
"gitea_repo": "jacob-mathison/home-grown-llm-data"
}
]
},
2026-07-17 14:33:11 -05:00
"documentation": {
"agent_instructions": "AGENTS.md",
"llm_summary": "llm.txt",
"readme": "README.md",
"extension_management": "docs/extension-management.md"
},
"extension_management": {
"chrome_profile": "Silma",
"forbidden_profiles": ["Profile 1"],
"codex_chrome_extension_required": true,
"load_unpacked_path": "dist/",
"instructions": "Use the Codex Chrome extension with the Chrome profile named Silma. Do not use Profile 1."
},
2026-07-17 15:45:30 -05:00
"extension_permissions": [
"activeTab",
"sidePanel",
"storage",
"tabs"
],
2026-07-17 15:51:15 -05:00
"extension_host_permissions": [
2026-07-17 15:53:31 -05:00
"<all_urls>",
2026-07-17 15:51:15 -05:00
"Gitea host derived from VITE_GITEA_BASE_URL"
],
2026-07-17 14:08:03 -05:00
"commands": {
2026-07-17 14:16:54 -05:00
"install": "npm ci",
"codex_setup": "npm run codex:setup",
2026-07-17 14:08:03 -05:00
"dev": "npm run dev",
2026-07-17 14:16:54 -05:00
"codex_dev": "npm run dev:codex",
2026-07-17 14:08:03 -05:00
"build": "npm run build",
2026-07-17 14:16:54 -05:00
"codex_build": "npm run build:codex",
"preview": "npm run preview",
"verify_dist": "npm run verify:dist"
2026-07-17 14:08:03 -05:00
},
"environment": {
"example_file": ".env.example",
"local_file": ".env.local",
"variables": [
{
"name": "VITE_GITEA_BASE_URL",
"required": true,
"secret": false,
"description": "Base URL for the Gitea instance."
},
{
"name": "VITE_GITEA_TOKEN",
"required": true,
"secret": true,
2026-07-17 15:45:30 -05:00
"description": "Gitea API token used by the side panel client."
2026-07-17 14:08:03 -05:00
},
{
"name": "VITE_GITEA_REPO_OWNER",
"required": true,
"secret": false,
"description": "Owner for the target Gitea repository."
},
{
"name": "VITE_GITEA_REPO_NAME",
"required": true,
"secret": false,
"description": "Name of the target Gitea repository."
}
]
},
"generated_paths": [
"dist/",
"node_modules/"
],
2026-07-17 14:33:11 -05:00
"gitea_workflows": [
{
"path": ".gitea/workflows/build.yml",
"trigger": "push to main or pull request",
"purpose": "Build and verify the deployable extension output."
},
{
"path": ".gitea/workflows/issue-opened-placeholder.yml",
"trigger": "new issue opened",
"purpose": "Placeholder workflow that prints 200 okay."
}
],
"agent_guidance": "See AGENTS.md and docs/extension-management.md for coding, build, and Chrome profile instructions. Do not edit dist/ directly; rebuild from source instead."
2026-07-17 14:08:03 -05:00
}