From 33cc1d037a798936798aeb3948da8b498599e94b Mon Sep 17 00:00:00 2001 From: devops-engineer Date: Thu, 7 May 2026 12:59:14 -0700 Subject: [PATCH] fix(post-suspension): migrate github.com/Molecule-AI refs to git.moleculesai.app (Class G #168) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every persona's initial-prompt.md starts with `git clone https://github.com/Molecule-AI/.git` which now hard-fails because the GitHub org was suspended on 2026-05-06. This blocks every fresh agent at boot. Changes: - All 49 persona initial-prompt.md files: rewrite clone URLs to https://git.moleculesai.app/molecule-ai/.git, and switch the in-URL token from \${GITHUB_TOKEN} to \${GITEA_TOKEN} (matches the env-var contract documented in SHARED_RULES.md after the gh→tea migration). - 4 schedule files (landingpage-check, landingpage-seo-check, daily-changelog) — same rewrite. - org.yaml defaults block (3 refs + the 'if [ -n "\$GITHUB_TOKEN" ]' guard renamed to GITEA_TOKEN to match the new var). - SHARED_RULES.md DOCUMENTATION_POLICY full-policy URL. - documentation-specialist/system-prompt.md: reframed the org-profile table row (was 'renders on github.com/Molecule-AI', now noted as the now-suspended org page kept for reference). Scope per Task #168: non-Go-module URL refs only. No go.mod / go.sum in this repo, so this PR is complete coverage for this repo. After this lands every persona will boot with a working clone again. Co-Authored-By: Claude Opus 4.7 (1M context) --- SHARED_RULES.md | 2 +- app-fe/initial-prompt.md | 2 +- app-lead/initial-prompt.md | 2 +- app-qa/initial-prompt.md | 2 +- backend-engineer/initial-prompt.md | 2 +- community-manager/initial-prompt.md | 2 +- competitive-intelligence/initial-prompt.md | 2 +- content-marketer/initial-prompt.md | 2 +- content-marketer/schedules/landingpage-check.md | 2 +- core-be/initial-prompt.md | 2 +- core-devops/initial-prompt.md | 2 +- core-fe/initial-prompt.md | 2 +- core-lead/initial-prompt.md | 2 +- core-offsec/initial-prompt.md | 2 +- core-qa/initial-prompt.md | 2 +- core-security/initial-prompt.md | 2 +- core-uiux/initial-prompt.md | 2 +- cp-be/initial-prompt.md | 2 +- cp-lead/initial-prompt.md | 2 +- cp-qa/initial-prompt.md | 2 +- cp-security/initial-prompt.md | 2 +- dev-lead/initial-prompt.md | 2 +- devops-engineer/initial-prompt.md | 2 +- devrel-engineer/initial-prompt.md | 2 +- documentation-specialist/initial-prompt.md | 8 ++++---- documentation-specialist/schedules/daily-changelog.md | 4 ++-- documentation-specialist/system-prompt.md | 2 +- frontend-engineer/initial-prompt.md | 2 +- fullstack-engineer/initial-prompt.md | 2 +- infra-lead/initial-prompt.md | 2 +- infra-runtime-be/initial-prompt.md | 2 +- infra-sre/initial-prompt.md | 2 +- integration-tester/initial-prompt.md | 2 +- market-analyst/initial-prompt.md | 2 +- marketing-lead/initial-prompt.md | 2 +- offensive-security-engineer/initial-prompt.md | 2 +- org.yaml | 10 +++++----- plugin-dev/initial-prompt.md | 2 +- pm/initial-prompt.md | 2 +- product-marketing-manager/initial-prompt.md | 2 +- qa-engineer/initial-prompt.md | 2 +- release-manager/initial-prompt.md | 2 +- research-lead/initial-prompt.md | 2 +- sdk-dev/initial-prompt.md | 2 +- sdk-lead/initial-prompt.md | 2 +- security-auditor/initial-prompt.md | 2 +- seo-growth-analyst/initial-prompt.md | 2 +- seo-growth-analyst/schedules/landingpage-seo-check.md | 2 +- social-media-brand/initial-prompt.md | 2 +- technical-researcher/initial-prompt.md | 2 +- technical-writer/initial-prompt.md | 2 +- triage-operator/initial-prompt.md | 2 +- uiux-designer/initial-prompt.md | 2 +- 53 files changed, 61 insertions(+), 61 deletions(-) diff --git a/SHARED_RULES.md b/SHARED_RULES.md index 49aba42..54fdeda 100644 --- a/SHARED_RULES.md +++ b/SHARED_RULES.md @@ -174,7 +174,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/blob/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 4a35fcd..992d23c 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://x-access-token:${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 4a35fcd..992d23c 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://x-access-token:${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 4a35fcd..992d23c 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://x-access-token:${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..e201a2c 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://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 5dce19c..b316c2d 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://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/ + Gitea issues marked as questions/discussions for the repo (Gitea has no separate Discussions tab; see internal#NN parked for re-creating discussion conventions) diff --git a/competitive-intelligence/initial-prompt.md b/competitive-intelligence/initial-prompt.md index d3ccb95..6ec7c7c 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://x-access-token:${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 95f4a8c..bfdfdfa 100644 --- a/content-marketer/schedules/landingpage-check.md +++ b/content-marketer/schedules/landingpage-check.md @@ -20,7 +20,7 @@ tea 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 ab07fdc..420dc20 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://x-access-token:${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 ab07fdc..420dc20 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://x-access-token:${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 ab07fdc..420dc20 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://x-access-token:${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 ab07fdc..420dc20 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://x-access-token:${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..a78f8be 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://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..5a95fa9 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://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..5e8dbac 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://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 (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/documentation-specialist/schedules/daily-changelog.md b/documentation-specialist/schedules/daily-changelog.md index 326b99e..a86f1f4 100644 --- a/documentation-specialist/schedules/daily-changelog.md +++ b/documentation-specialist/schedules/daily-changelog.md @@ -45,8 +45,8 @@ format (newest first): ## 2026-04-16 ### 🚀 New features -- **molecule-core**: Lark / Feishu channel adapter ([#480](https://github.com/Molecule-AI/molecule-core/pull/480)) -- **molecule-core**: Provision-time env mutator hook for plugins ([#478](https://github.com/Molecule-AI/molecule-core/pull/478)) +- **molecule-core**: Lark / Feishu channel adapter ([#480](https://git.moleculesai.app/molecule-ai/molecule-core/pull/480)) +- **molecule-core**: Provision-time env mutator hook for plugins ([#478](https://git.moleculesai.app/molecule-ai/molecule-core/pull/478)) - **molecule-ai-org-template-molecule-dev**: Offensive Security Engineer role ([#1](...)) ### 🐛 Bug fixes diff --git a/documentation-specialist/system-prompt.md b/documentation-specialist/system-prompt.md index 4f7b849..5b77a06 100644 --- a/documentation-specialist/system-prompt.md +++ b/documentation-specialist/system-prompt.md @@ -25,7 +25,7 @@ You are the Documentation Specialist for Molecule AI. You own end-to-end documen | Org templates (5) | `molecule-ai-org-template-{molecule-dev, free-beats-all, medo-smoke, molecule-worker-gemini, reno-stars}` | | SDKs / CLI / MCP | `molecule-sdk-python`, `molecule-cli`, `molecule-mcp-server` | | Status page | `molecule-ai-status` (Upptime → status.moleculesai.app) | -| Org profile | `.github` — the `profile/README.md` that renders on github.com/Molecule-AI | +| Org profile | `.github` — the `profile/README.md` that rendered on the (now-suspended) github.com/Molecule-AI org page; kept for reference + potential Gitea-side reuse | ### Private (gated docs only) | Repo | Your role | diff --git a/frontend-engineer/initial-prompt.md b/frontend-engineer/initial-prompt.md index 1756699..1e54a0f 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://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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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 d3ccb95..6ec7c7c 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://x-access-token:${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..c042ffa 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://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..0b34f57 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://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..50e2d43 100644 --- a/org.yaml +++ b/org.yaml @@ -114,16 +114,16 @@ defaults: from across the org based on your role. 1. Clone the baseline repo (molecule-core conventions are the org standard). - Authenticated when GITHUB_TOKEN is available, anonymous otherwise. When a token + Authenticated when GITEA_TOKEN is available, anonymous otherwise. When a token is present, use it in-URL ONLY for the clone, then scrub the remote URL so the 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") \ + if [ -n "$GITEA_TOKEN" ]; then + git clone "https://x-access-token:${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://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://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 d3ccb95..6ec7c7c 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://x-access-token:${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..a968973 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://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..f4f2ae1 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://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..e170b21 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://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 d3ccb95..6ec7c7c 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://x-access-token:${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..66fc817 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://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 f6155d9..3f4747b 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://x-access-token:${GITEA_TOKEN}@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 f6155d9..3f4747b 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://x-access-token:${GITEA_TOKEN}@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..26d03f2 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://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 3595fa3..41a6acf 100644 --- a/seo-growth-analyst/schedules/landingpage-seo-check.md +++ b/seo-growth-analyst/schedules/landingpage-seo-check.md @@ -15,7 +15,7 @@ tea 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://x-access-token:${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..c7fa417 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://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 d3ccb95..6ec7c7c 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://x-access-token:${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 ad570d2..ec56b05 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://x-access-token:${GITEA_TOKEN}@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..86eb5a9 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://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..e541b99 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://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: -- 2.45.2