diff --git a/SHARED_RULES.md b/SHARED_RULES.md index a517642..986e337 100644 --- a/SHARED_RULES.md +++ b/SHARED_RULES.md @@ -6,6 +6,20 @@ The four **Philosophy** sections below frame how we approach all work. Every spe --- +## ⚠️ Post-2026-05-06 migration in progress (2026-05-07) + +The GitHub `Molecule-AI` org was suspended on 2026-05-06 and is permanently gone. Canonical SCM is now Gitea at `https://git.moleculesai.app/molecule-ai/`. Persona `initial-prompt.md` files have been swept to use Gitea clone URLs. + +**Two known limitations until follow-up issues land:** + +1. **Private-repo clones depend on `GITEA_TOKEN` env var** that the workspace-bootstrap pipeline does not yet inject. Tracking: [`internal#44`](https://git.moleculesai.app/molecule-ai/internal/issues/44). Until that lands, persona steps that clone `internal`, `molecule-controlplane`, `molecule-core`, `molecule-app`, `landingpage`, etc. WILL FAIL at boot. Public-repo clones (`docs`, `molecule-sdk-python`) work immediately. + +2. **`gh` (GitHub CLI) calls** throughout persona files do not talk to Gitea. Tracking: [`internal#45`](https://git.moleculesai.app/molecule-ai/internal/issues/45). Until that lands, every `gh repo clone Molecule-AI/...`, `gh pr list --repo Molecule-AI/...`, `gh issue create --repo Molecule-AI/...`, `gh run list --repo Molecule-AI/...` call WILL FAIL. + +If your persona depends on either, expect partial breakage. Personas that only need to clone public repos (per their `initial-prompt.md` `git clone` lines) and avoid `gh` invocations work fully today. + +--- + ## Philosophy 1 — Diagnosis Is the Deliverable, Not Just the Fix A bug fix patches the symptom. Diagnosis explains why this class of bug was possible. @@ -142,7 +156,7 @@ The fix is simple: report exactly what you observed, say "I don't know" for ever - Use generic placeholders: ``, `acme`, `your-org` — never real customer names or account IDs. - Describe WHAT and HOW for self-hosters. Never describe WHERE our specific prod instance lives. -**Full policy:** https://github.com/Molecule-AI/internal/blob/main/DOCUMENTATION_POLICY.md +**Full policy:** https://git.moleculesai.app/molecule-ai/internal/src/branch/main/DOCUMENTATION_POLICY.md ### NEVER write internal content to the public monorepo diff --git a/app-fe/initial-prompt.md b/app-fe/initial-prompt.md index 1ad1aa2..6b66ec8 100644 --- a/app-fe/initial-prompt.md +++ b/app-fe/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) ln -sfn /workspace/repos/molecule-app /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/app-lead/initial-prompt.md b/app-lead/initial-prompt.md index 1ad1aa2..6b66ec8 100644 --- a/app-lead/initial-prompt.md +++ b/app-lead/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) ln -sfn /workspace/repos/molecule-app /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/app-qa/initial-prompt.md b/app-qa/initial-prompt.md index 1ad1aa2..6b66ec8 100644 --- a/app-qa/initial-prompt.md +++ b/app-qa/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-app.git" /workspace/repos/molecule-app 2>/dev/null || (cd /workspace/repos/molecule-app && git pull) ln -sfn /workspace/repos/molecule-app /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/backend-engineer/initial-prompt.md b/backend-engineer/initial-prompt.md index f1fe36f..c0f7a3e 100644 --- a/backend-engineer/initial-prompt.md +++ b/backend-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Backend Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on Platform section, API routes, database 3. Read /configs/system-prompt.md 4. Study the handler pattern: read /workspace/repo/platform/internal/handlers/workspace.go diff --git a/community-manager/initial-prompt.md b/community-manager/initial-prompt.md index df437d7..9a44d5b 100644 --- a/community-manager/initial-prompt.md +++ b/community-manager/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Community Manager. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md 3. Read /configs/system-prompt.md 4. Inventory docs/community/ + gh discussions for the repo diff --git a/competitive-intelligence/initial-prompt.md b/competitive-intelligence/initial-prompt.md index e93c98a..4d15378 100644 --- a/competitive-intelligence/initial-prompt.md +++ b/competitive-intelligence/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/content-marketer/initial-prompt.md b/content-marketer/initial-prompt.md index 8fb047f..252e6f7 100644 --- a/content-marketer/initial-prompt.md +++ b/content-marketer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Content Marketer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://git.moleculesai.app/molecule-ai/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md for platform context 3. Read /configs/system-prompt.md 4. Skim docs/blog/ if it exists — match tone + format diff --git a/content-marketer/schedules/landingpage-check.md b/content-marketer/schedules/landingpage-check.md index 0580f10..7142041 100644 --- a/content-marketer/schedules/landingpage-check.md +++ b/content-marketer/schedules/landingpage-check.md @@ -20,7 +20,7 @@ gh issue list --repo Molecule-AI/landingpage --state open --json number,title ## Step 4: Act If you find something to fix: clone the repo, create a branch, fix it, push, open PR. ```bash -git clone https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/landingpage.git /workspace/repos/landingpage 2>/dev/null || (cd /workspace/repos/landingpage && git pull) +git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/landingpage.git /workspace/repos/landingpage 2>/dev/null || (cd /workspace/repos/landingpage && git pull) ``` ## Step 5: Report diff --git a/core-be/initial-prompt.md b/core-be/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-be/initial-prompt.md +++ b/core-be/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-devops/initial-prompt.md b/core-devops/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-devops/initial-prompt.md +++ b/core-devops/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-fe/initial-prompt.md b/core-fe/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-fe/initial-prompt.md +++ b/core-fe/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-lead/initial-prompt.md b/core-lead/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-lead/initial-prompt.md +++ b/core-lead/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-offsec/initial-prompt.md b/core-offsec/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-offsec/initial-prompt.md +++ b/core-offsec/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-qa/initial-prompt.md b/core-qa/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-qa/initial-prompt.md +++ b/core-qa/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-security/initial-prompt.md b/core-security/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-security/initial-prompt.md +++ b/core-security/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/core-uiux/initial-prompt.md b/core-uiux/initial-prompt.md index e93c98a..4d15378 100644 --- a/core-uiux/initial-prompt.md +++ b/core-uiux/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/cp-be/initial-prompt.md b/cp-be/initial-prompt.md index a1f354a..598cfea 100644 --- a/cp-be/initial-prompt.md +++ b/cp-be/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) ln -sfn /workspace/repos/molecule-controlplane /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/cp-lead/initial-prompt.md b/cp-lead/initial-prompt.md index a1f354a..598cfea 100644 --- a/cp-lead/initial-prompt.md +++ b/cp-lead/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) ln -sfn /workspace/repos/molecule-controlplane /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/cp-qa/initial-prompt.md b/cp-qa/initial-prompt.md index a1f354a..598cfea 100644 --- a/cp-qa/initial-prompt.md +++ b/cp-qa/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) ln -sfn /workspace/repos/molecule-controlplane /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/cp-security/initial-prompt.md b/cp-security/initial-prompt.md index a1f354a..598cfea 100644 --- a/cp-security/initial-prompt.md +++ b/cp-security/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-controlplane.git" /workspace/repos/molecule-controlplane 2>/dev/null || (cd /workspace/repos/molecule-controlplane && git pull) ln -sfn /workspace/repos/molecule-controlplane /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/dev-lead/initial-prompt.md b/dev-lead/initial-prompt.md index ea2257d..636a4a9 100644 --- a/dev-lead/initial-prompt.md +++ b/dev-lead/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Dev Lead. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — full architecture, build commands, test commands 3. Read /configs/system-prompt.md 4. Run: cd /workspace/repo && git log --oneline -5 diff --git a/devops-engineer/initial-prompt.md b/devops-engineer/initial-prompt.md index a2a415a..c85e781 100644 --- a/devops-engineer/initial-prompt.md +++ b/devops-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as DevOps Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on Infrastructure, Docker, CI sections 3. Read /configs/system-prompt.md 4. Read /workspace/repo/.github/workflows/ci.yml diff --git a/devrel-engineer/initial-prompt.md b/devrel-engineer/initial-prompt.md index f718fbf..2f72029 100644 --- a/devrel-engineer/initial-prompt.md +++ b/devrel-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as DevRel Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://git.moleculesai.app/molecule-ai/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — full architecture 3. Read /configs/system-prompt.md — your role + partnerships 4. Inventory: ls /workspace/repo/docs/tutorials/ (may be empty — that's a signal) diff --git a/documentation-specialist/initial-prompt.md b/documentation-specialist/initial-prompt.md index eb876a3..0379a72 100644 --- a/documentation-specialist/initial-prompt.md +++ b/documentation-specialist/initial-prompt.md @@ -10,9 +10,9 @@ guarantees) but never the provisioner's internals. When in doubt: don't publish. 1. Clone all three repos: - git clone https://github.com/Molecule-AI/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) - git clone https://github.com/Molecule-AI/docs.git /workspace/docs 2>/dev/null || (cd /workspace/docs && git pull) - git clone https://github.com/Molecule-AI/molecule-controlplane.git /workspace/controlplane 2>/dev/null || (cd /workspace/controlplane && git pull) + git clone https://git.moleculesai.app/molecule-ai/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) + git clone https://git.moleculesai.app/molecule-ai/docs.git /workspace/docs 2>/dev/null || (cd /workspace/docs && git pull) + git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-controlplane.git /workspace/controlplane 2>/dev/null || (cd /workspace/controlplane && git pull) 2. Read /workspace/repo/CLAUDE.md — full architecture, what's public-facing 3. Read /configs/system-prompt.md 4. Read /workspace/docs/README.md and /workspace/docs/content/docs/index.mdx @@ -30,7 +30,7 @@ don't publish. - Recent controlplane PRs whose internal README needs an update - Public concepts that lack a canonical naming entry 10. Wait for tasks from PM. Your owned surfaces are: - - https://github.com/Molecule-AI/docs (customer site, Fumadocs) — PUBLIC + - https://git.moleculesai.app/molecule-ai/docs.git (customer site, Fumadocs) — PUBLIC - /workspace/repo/docs/ (internal architecture / edit-history) — PUBLIC - /workspace/repo/README.md and per-package READMEs — PUBLIC - /workspace/controlplane/README.md, PLAN.md, internal docs — PRIVATE diff --git a/frontend-engineer/initial-prompt.md b/frontend-engineer/initial-prompt.md index 1756699..d28dad2 100644 --- a/frontend-engineer/initial-prompt.md +++ b/frontend-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Frontend Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on Canvas section 3. Read /configs/system-prompt.md 4. Study existing code — read these files to understand patterns: diff --git a/fullstack-engineer/initial-prompt.md b/fullstack-engineer/initial-prompt.md index e93c98a..4d15378 100644 --- a/fullstack-engineer/initial-prompt.md +++ b/fullstack-engineer/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/infra-lead/initial-prompt.md b/infra-lead/initial-prompt.md index e93c98a..4d15378 100644 --- a/infra-lead/initial-prompt.md +++ b/infra-lead/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/infra-runtime-be/initial-prompt.md b/infra-runtime-be/initial-prompt.md index e93c98a..4d15378 100644 --- a/infra-runtime-be/initial-prompt.md +++ b/infra-runtime-be/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/infra-sre/initial-prompt.md b/infra-sre/initial-prompt.md index e93c98a..4d15378 100644 --- a/infra-sre/initial-prompt.md +++ b/infra-sre/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/integration-tester/initial-prompt.md b/integration-tester/initial-prompt.md index e93c98a..4d15378 100644 --- a/integration-tester/initial-prompt.md +++ b/integration-tester/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/market-analyst/initial-prompt.md b/market-analyst/initial-prompt.md index e93c98a..4d15378 100644 --- a/market-analyst/initial-prompt.md +++ b/market-analyst/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/marketing-lead/initial-prompt.md b/marketing-lead/initial-prompt.md index 33de3e9..8546b63 100644 --- a/marketing-lead/initial-prompt.md +++ b/marketing-lead/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Marketing Lead. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md for platform architecture 3. Read /configs/system-prompt.md — your full role + cross-functional matrix 4. Skim docs/marketing/ (may not exist yet — create the skeleton if so: positioning.md, competitors.md, landing/, social/, seo/, brand.md) diff --git a/offensive-security-engineer/initial-prompt.md b/offensive-security-engineer/initial-prompt.md index 9d23a4a..d83f6ec 100644 --- a/offensive-security-engineer/initial-prompt.md +++ b/offensive-security-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Offensive Security Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on the platform's auth model, A2A proxy, and workspace boundary. 3. Read /configs/system-prompt.md to understand your scope and operating rules. 4. Read /workspace/repo/platform/internal/router/setup.go (or equivalent) to enumerate every HTTP route + the middleware applied to each — this is your initial attack surface map. diff --git a/org.yaml b/org.yaml index 649f288..987c77d 100644 --- a/org.yaml +++ b/org.yaml @@ -119,11 +119,11 @@ defaults: token is never persisted to /workspace/repos/molecule-core/.git/config: mkdir -p /workspace/repos if [ -n "$GITHUB_TOKEN" ]; then - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null \ - && (cd /workspace/repos/molecule-core && git remote set-url origin "https://github.com/Molecule-AI/molecule-core.git") \ + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null \ + && (cd /workspace/repos/molecule-core && git remote set-url origin "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git") \ || (cd /workspace/repos/molecule-core && git pull) else - git clone "https://github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) fi # Backwards-compat symlink — older role prompts still reference /workspace/repo ln -sfn /workspace/repos/molecule-core /workspace/repo diff --git a/plugin-dev/initial-prompt.md b/plugin-dev/initial-prompt.md index e93c98a..4d15378 100644 --- a/plugin-dev/initial-prompt.md +++ b/plugin-dev/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/pm/initial-prompt.md b/pm/initial-prompt.md index 035bfd2..c01c30b 100644 --- a/pm/initial-prompt.md +++ b/pm/initial-prompt.md @@ -3,7 +3,7 @@ You just started as PM. Set up silently — do NOT contact agents yet. if [ -d /workspace/.git ] || [ -f /workspace/CLAUDE.md ]; then export REPO=/workspace else - git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) + git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) export REPO=/workspace/repo fi 2. Read $REPO/CLAUDE.md to understand the project diff --git a/product-marketing-manager/initial-prompt.md b/product-marketing-manager/initial-prompt.md index 06df310..1559d6c 100644 --- a/product-marketing-manager/initial-prompt.md +++ b/product-marketing-manager/initial-prompt.md @@ -1,5 +1,5 @@ You just started as PMM. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md 3. Read /configs/system-prompt.md 4. Read /workspace/repo/docs/ecosystem-watch.md — the competitor intel source diff --git a/qa-engineer/initial-prompt.md b/qa-engineer/initial-prompt.md index b9f261c..a6e993f 100644 --- a/qa-engineer/initial-prompt.md +++ b/qa-engineer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as QA Engineer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on ALL test commands and locations 3. Read /configs/system-prompt.md — your comprehensive QA requirements are there 4. Use commit_memory to save test suite locations and commands diff --git a/release-manager/initial-prompt.md b/release-manager/initial-prompt.md index e93c98a..4d15378 100644 --- a/release-manager/initial-prompt.md +++ b/release-manager/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/research-lead/initial-prompt.md b/research-lead/initial-prompt.md index 21cb1c3..902e1ae 100644 --- a/research-lead/initial-prompt.md +++ b/research-lead/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Research Lead. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md 3. Read /configs/system-prompt.md 4. Read /workspace/repo/docs/product/overview.md to understand the product diff --git a/sdk-dev/initial-prompt.md b/sdk-dev/initial-prompt.md index 661b5e9..5b462e0 100644 --- a/sdk-dev/initial-prompt.md +++ b/sdk-dev/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-sdk-python.git" /workspace/repos/molecule-sdk-python 2>/dev/null || (cd /workspace/repos/molecule-sdk-python && git pull) + git clone "https://git.moleculesai.app/molecule-ai/molecule-sdk-python.git" /workspace/repos/molecule-sdk-python 2>/dev/null || (cd /workspace/repos/molecule-sdk-python && git pull) ln -sfn /workspace/repos/molecule-sdk-python /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/sdk-lead/initial-prompt.md b/sdk-lead/initial-prompt.md index 661b5e9..5b462e0 100644 --- a/sdk-lead/initial-prompt.md +++ b/sdk-lead/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-sdk-python.git" /workspace/repos/molecule-sdk-python 2>/dev/null || (cd /workspace/repos/molecule-sdk-python && git pull) + git clone "https://git.moleculesai.app/molecule-ai/molecule-sdk-python.git" /workspace/repos/molecule-sdk-python 2>/dev/null || (cd /workspace/repos/molecule-sdk-python && git pull) ln -sfn /workspace/repos/molecule-sdk-python /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/security-auditor/initial-prompt.md b/security-auditor/initial-prompt.md index 58489a4..8e66310 100644 --- a/security-auditor/initial-prompt.md +++ b/security-auditor/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Security Auditor. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on security, crypto, access control 3. Read /configs/system-prompt.md 4. Read /workspace/repo/platform/internal/crypto/aes.go diff --git a/seo-growth-analyst/initial-prompt.md b/seo-growth-analyst/initial-prompt.md index ef28be5..9a3a6f6 100644 --- a/seo-growth-analyst/initial-prompt.md +++ b/seo-growth-analyst/initial-prompt.md @@ -1,5 +1,5 @@ You just started as SEO Growth Analyst. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://git.moleculesai.app/molecule-ai/docs.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md 3. Read /configs/system-prompt.md 4. Create/skim docs/marketing/seo/keywords.md — seed with 5-10 target keywords if empty diff --git a/seo-growth-analyst/schedules/landingpage-seo-check.md b/seo-growth-analyst/schedules/landingpage-seo-check.md index a3ae4d4..3cd66bd 100644 --- a/seo-growth-analyst/schedules/landingpage-seo-check.md +++ b/seo-growth-analyst/schedules/landingpage-seo-check.md @@ -15,7 +15,7 @@ gh issue list --repo Molecule-AI/landingpage --state open --json number,title ## Step 3: Act Clone and fix if needed: ```bash -git clone https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/landingpage.git /workspace/repos/landingpage 2>/dev/null || (cd /workspace/repos/landingpage && git pull) +git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/landingpage.git /workspace/repos/landingpage 2>/dev/null || (cd /workspace/repos/landingpage && git pull) ``` ## Step 4: Report diff --git a/social-media-brand/initial-prompt.md b/social-media-brand/initial-prompt.md index a7aa319..70a5f71 100644 --- a/social-media-brand/initial-prompt.md +++ b/social-media-brand/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Social Media / Brand. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/internal.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md 3. Read /configs/system-prompt.md 4. Create/skim docs/marketing/brand.md — seed if empty: logo, palette (zinc-900/950 bg, blue-500/600 accents), typography (system-mono for code), tone ("technical, dry humor, never hype-speak") diff --git a/technical-researcher/initial-prompt.md b/technical-researcher/initial-prompt.md index e93c98a..4d15378 100644 --- a/technical-researcher/initial-prompt.md +++ b/technical-researcher/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) + git clone "https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git" /workspace/repos/molecule-core 2>/dev/null || (cd /workspace/repos/molecule-core && git pull) ln -sfn /workspace/repos/molecule-core /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/technical-writer/initial-prompt.md b/technical-writer/initial-prompt.md index 36ca587..da2a81b 100644 --- a/technical-writer/initial-prompt.md +++ b/technical-writer/initial-prompt.md @@ -2,7 +2,7 @@ You just started. Set up your environment silently — do NOT contact other agen 1. Clone your assigned repos: mkdir -p /workspace/repos - git clone "https://x-access-token:${GITHUB_TOKEN}@github.com/Molecule-AI/docs.git" /workspace/repos/docs 2>/dev/null || (cd /workspace/repos/docs && git pull) + git clone "https://git.moleculesai.app/molecule-ai/docs.git" /workspace/repos/docs 2>/dev/null || (cd /workspace/repos/docs && git pull) ln -sfn /workspace/repos/docs /workspace/repo 2. Read project conventions: cat /workspace/repo/CLAUDE.md diff --git a/triage-operator/initial-prompt.md b/triage-operator/initial-prompt.md index bafb4ab..d7c3ec5 100644 --- a/triage-operator/initial-prompt.md +++ b/triage-operator/initial-prompt.md @@ -1,5 +1,5 @@ You just started as Triage Operator. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read the four handoff files in full: - /workspace/repo/org-templates/molecule-dev/triage-operator/system-prompt.md - /workspace/repo/org-templates/molecule-dev/triage-operator/philosophy.md diff --git a/uiux-designer/initial-prompt.md b/uiux-designer/initial-prompt.md index 6f2579a..3cefa9d 100644 --- a/uiux-designer/initial-prompt.md +++ b/uiux-designer/initial-prompt.md @@ -1,5 +1,5 @@ You just started as UIUX Designer. Set up silently — do NOT contact other agents. -1. Clone the repo: git clone https://github.com/Molecule-AI/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) +1. Clone the repo: git clone https://oauth2:${GITEA_TOKEN}@git.moleculesai.app/molecule-ai/molecule-core.git /workspace/repo 2>/dev/null || (cd /workspace/repo && git pull) 2. Read /workspace/repo/CLAUDE.md — focus on Canvas section 3. Read /configs/system-prompt.md 4. Read these files to understand the visual design: