From ce3bacda7940e918afc2f483bcb3d6ac0586ffaf Mon Sep 17 00:00:00 2001 From: Piotr Garlej Date: Mon, 25 May 2026 18:49:27 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Clarify=20agent=20git=20rules:=20implement?= =?UTF-8?q?=20=E2=89=A0=20full=20workflow,=20ask=20before=20new=20PR?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two recurring mistakes: - agent commits/pushes after being asked to "implement X", treating the request as permission for the full git workflow - agent opens a new PR when an existing open branch would be the right target Co-Authored-By: Claude Sonnet 4.6 --- AGENTS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index e5612ae..62229da 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -40,7 +40,8 @@ Direct pushes to `master` are blocked by branch protection. CI enforces the vers **Agent rules:** -- **Never create a branch, commit, or PR unless explicitly asked by the developer.** Make code changes when asked; git operations only on explicit instruction. +- **"Implement X" means make the code changes only.** Stop there and wait. Do not branch, commit, bump the version, push, or open a PR unless the developer explicitly says to (e.g. "commit this", "open a PR", "do the full workflow"). +- **Before opening a PR, ask** whether the new work should go into an existing open branch/PR or a new one. Never assume a new branch. - **Do not push** until the developer has tested the changes locally on a dev device and confirmed they are ready. Choose the bump type based on the nature of the changes: From 5e9ce8775179b98aa10ec7b7b0beeb28cee0baeb Mon Sep 17 00:00:00 2001 From: Piotr Garlej Date: Mon, 25 May 2026 18:49:32 +0200 Subject: [PATCH 2/2] Bump version to 1.6.3 Co-Authored-By: Claude Sonnet 4.6 --- android/app/build.gradle | 4 ++-- app.json | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 6c5a1cc..62345ff 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -92,8 +92,8 @@ android { applicationId 'com.pgarr.simplenotepad' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 24 - versionName "1.6.1" + versionCode 25 + versionName "1.6.2" buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\"" } diff --git a/app.json b/app.json index 7266147..1f1115c 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "expo": { "name": "simple-notepad", "slug": "simple-notepad", - "version": "1.6.1", + "version": "1.6.2", "orientation": "portrait", "icon": "./assets/images/icon.png", "scheme": "simple-notepad", @@ -24,7 +24,7 @@ "backgroundColor": "#ffffff" }, "package": "com.pgarr.simplenotepad", - "versionCode": 24 + "versionCode": 25 }, "web": { "bundler": "metro", @@ -43,7 +43,7 @@ "projectId": "9e3820b7-558b-4bd2-a1b2-e49561e741e6" } }, - "runtimeVersion": "1.6.1", + "runtimeVersion": "1.6.2", "updates": { "url": "https://u.expo.dev/9e3820b7-558b-4bd2-a1b2-e49561e741e6" } diff --git a/package-lock.json b/package-lock.json index 59001eb..261e6da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "simple-notepad", - "version": "1.6.1", + "version": "1.6.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "simple-notepad", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@react-navigation/native": "^7.0.0", "@rn-primitives/portal": "~1.3.0", diff --git a/package.json b/package.json index 0ace471..19a07a4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "simple-notepad", "main": "expo-router/entry", - "version": "1.6.1", + "version": "1.6.2", "scripts": { "prebuild": "expo prebuild", "dev": "expo start",