From 8aaefbdfdbd4cf38a2da3869db522c3326aa908b Mon Sep 17 00:00:00 2001 From: "Md.Sadiq" Date: Mon, 13 Apr 2026 13:46:50 +0530 Subject: [PATCH] corrected the metadata of the project --- .github/ISSUE_TEMPLATE/config.yml | 6 +++--- CONTRIBUTING.md | 3 +-- README.md | 4 ++-- mesher/landing/lib/external-links.ts | 4 ++-- mesher/mesh.toml | 1 + mesher/scripts/lib/mesh-toolchain.sh | 4 ++-- mesher/scripts/verify-maintainer-surface.sh | 2 +- scripts/verify-landing-surface.sh | 8 ++++---- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 61a61e40d..7e01f0094 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,14 +1,14 @@ blank_issues_enabled: false contact_links: - name: Support guide - url: https://github.com/hyperpush-org/hyperpush-mono/blob/main/SUPPORT.md + url: https://github.com/hyperpush-org/hyperpush/blob/main/SUPPORT.md about: Start with the product support guide and maintainer runbook links. - name: Mesher maintainer guide - url: https://github.com/hyperpush-org/hyperpush-mono/blob/main/mesher/README.md + url: https://github.com/hyperpush-org/hyperpush/blob/main/mesher/README.md about: Mesher maintainer-facing startup, smoke, and verification workflow. - name: Mesh language docs url: https://meshlang.dev/docs/getting-started/ about: Mesh installation, language/tooling docs, and starter guidance. - name: Security policy - url: https://github.com/hyperpush-org/hyperpush-mono/blob/main/SECURITY.md + url: https://github.com/hyperpush-org/hyperpush/blob/main/SECURITY.md about: Use the private reporting path for vulnerabilities instead of public issues. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e1c7ad4e..8c22ea2a7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to Hyperpush Mono +# Contributing to Hyperpush Thanks for contributing. @@ -118,4 +118,3 @@ A good PR includes: ## License By contributing, you agree that your contributions will be licensed under the project license in [LICENSE](LICENSE). -ICENSE). diff --git a/README.md b/README.md index b74927d06..348cda9a1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Hyperpush Mono +# Hyperpush This repo is the product-only root for Hyperpush in the blessed two-repo workspace. @@ -56,7 +56,7 @@ If you are working in the blessed sibling workspace, the normal path is: ## Product repo identity -Canonical product repo URL: https://github.com/hyperpush-org/hyperpush-mono +Canonical product repo URL: https://github.com/hyperpush-org/hyperpush The landing app and `client` stay product-owned here. `mesher/landing` remains the intentional Next.js runtime surface; `mesher/client` owns the canonical Mesher dashboard route inventory, backend gap map, and maintainer handoff for later backend expansion slices. diff --git a/mesher/landing/lib/external-links.ts b/mesher/landing/lib/external-links.ts index b6daa416d..bd3096d73 100644 --- a/mesher/landing/lib/external-links.ts +++ b/mesher/landing/lib/external-links.ts @@ -1,5 +1,5 @@ -export const GITHUB_URL = "https://github.com/hyperpush-org/hyperpush-mono" -export const GITHUB_DISPLAY = "github.com/hyperpush-org/hyperpush-mono" +export const GITHUB_URL = "https://github.com/hyperpush-org/hyperpush" +export const GITHUB_DISPLAY = "github.com/hyperpush-org/hyperpush" export const X_URL = "https://x.com/hyper_push" export const X_HANDLE = "@hyper_push" diff --git a/mesher/mesh.toml b/mesher/mesh.toml index c696cc12f..713062e1c 100644 --- a/mesher/mesh.toml +++ b/mesher/mesh.toml @@ -3,6 +3,7 @@ name = "mesher" version = "1.0.0" description = "Mesher monitoring platform — production-grade issue tracker written in Mesh" license = "MIT" +repository = "https://github.com/hyperpush-org/hyperpush" [dependencies] # No external mesh package dependencies — uses Mesh stdlib only diff --git a/mesher/scripts/lib/mesh-toolchain.sh b/mesher/scripts/lib/mesh-toolchain.sh index f2781de55..d7ae77bdd 100755 --- a/mesher/scripts/lib/mesh-toolchain.sh +++ b/mesher/scripts/lib/mesh-toolchain.sh @@ -142,7 +142,7 @@ mesher_resolve_toolchain() { if [[ ! -x "$candidate" ]]; then mesher_toolchain_fail "toolchain contract drift: source=${source_name} root=${source_root} expected executable meshc at ${candidate}" fi - elif [[ "$(basename "$product_root")" == 'hyperpush-mono' ]]; then + elif [[ "$(basename "$product_root")" == 'hyperpush-mono' || "$(basename "$product_root")" == 'hyperpush' ]]; then source_name='sibling-workspace' source_root="$(mesher_find_nested_workspace_mesh_lang_root "$product_root")" candidate="$source_root/target/debug/meshc" @@ -153,7 +153,7 @@ mesher_resolve_toolchain() { source_name='PATH' candidate="$(mesher_abs_path "$(command -v meshc)")" else - mesher_toolchain_fail 'toolchain contract missing: no enclosing-source mesh-lang checkout, no sibling-workspace mesh-lang checkout for nested hyperpush-mono/mesher, and no meshc on PATH fallback' + mesher_toolchain_fail 'toolchain contract missing: no enclosing-source mesh-lang checkout, no sibling-workspace mesh-lang checkout for nested hyperpush-mono/mesher or hyperpush/mesher, and no meshc on PATH fallback' fi MESHER_MESHC_SOURCE="$source_name" diff --git a/mesher/scripts/verify-maintainer-surface.sh b/mesher/scripts/verify-maintainer-surface.sh index ffc5bb5d8..06e2c96ad 100755 --- a/mesher/scripts/verify-maintainer-surface.sh +++ b/mesher/scripts/verify-maintainer-surface.sh @@ -365,7 +365,7 @@ for key in [ require_contains('env', key, '.env contract') for needle in [ - 'Hyperpush Mono', + 'Hyperpush', 'mesher/client', 'does **not** own the Mesh language/compiler/runtime/docs/registry/packages-site tree', 'bash mesher/scripts/verify-maintainer-surface.sh', diff --git a/scripts/verify-landing-surface.sh b/scripts/verify-landing-surface.sh index 803e49820..bb23d36b3 100755 --- a/scripts/verify-landing-surface.sh +++ b/scripts/verify-landing-surface.sh @@ -111,19 +111,19 @@ done finish_phase init begin_phase readme-contract "verify product README wording" -require_contains readme-contract README.md '# Hyperpush Mono' +require_contains readme-contract README.md '# Hyperpush' require_contains readme-contract README.md 'hyperpush-mono/mesher' require_contains readme-contract README.md 'mesher/landing' require_contains readme-contract README.md 'bash mesher/scripts/verify-maintainer-surface.sh' require_contains readme-contract README.md 'bash scripts/verify-landing-surface.sh' -require_contains readme-contract README.md 'https://github.com/hyperpush-org/hyperpush-mono' +require_contains readme-contract README.md 'https://github.com/hyperpush-org/hyperpush' require_absent readme-contract README.md 'bash scripts/verify-m051-s01.sh' require_absent readme-contract README.md 'bash scripts/verify-production-proof-surface.sh' finish_phase readme-contract begin_phase landing-links "verify landing links point at the product repo" -require_contains landing-links mesher/landing/lib/external-links.ts 'https://github.com/hyperpush-org/hyperpush-mono' -require_contains landing-links mesher/landing/lib/external-links.ts 'github.com/hyperpush-org/hyperpush-mono' +require_contains landing-links mesher/landing/lib/external-links.ts 'https://github.com/hyperpush-org/hyperpush' +require_contains landing-links mesher/landing/lib/external-links.ts 'github.com/hyperpush-org/hyperpush' require_contains landing-links mesher/landing/lib/external-links.ts 'NEXT_PUBLIC_DISCORD_URL' finish_phase landing-links