From b704072d28d30f442caa273394a1e8b1f43fb298 Mon Sep 17 00:00:00 2001 From: amide-init Date: Fri, 6 Feb 2026 16:11:19 +0530 Subject: [PATCH 1/3] refine contributing guidelines in README.md for clarity and process --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 896e481..e4f36db 100644 --- a/README.md +++ b/README.md @@ -213,13 +213,11 @@ yarn analyze # Run CLI analysis (postgres connection required) ## Contributing -Contributions are welcome! Please ensure: +Contributions are welcome! -- Code follows the project's architecture principles -- TypeScript types are explicit -- Functions are small and composable -- No magic defaults -- Fail loudly with meaningful errors +- For bugs or feature ideas, please open a **GitHub issue**. +- For code changes, see [CONTRIBUTING.md](./CONTRIBUTING.md) for guidelines. +- For larger changes, open an issue first and tag **@amide-init** to discuss the approach. ## License From 5ae5007e62ad0625a70664f8ad5018bbc860bb11 Mon Sep 17 00:00:00 2001 From: amide-init Date: Fri, 6 Feb 2026 16:16:03 +0530 Subject: [PATCH 2/3] update cli --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 281528f..e5c8cc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile + run: yarn install - name: Build packages run: yarn build From c3185458616d5f37eb0a28cf4df88735c6349a0b Mon Sep 17 00:00:00 2001 From: amide-init Date: Fri, 6 Feb 2026 16:21:31 +0530 Subject: [PATCH 3/3] update workflow --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5c8cc3..bffded0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - cache: yarn - name: Install dependencies run: yarn install