Skip to content

Commit 1af808b

Browse files
committed
chore: repository audit + v1.0.2 bump
1 parent 705d769 commit 1af808b

6 files changed

Lines changed: 44 additions & 6 deletions

File tree

.agent/rules/02-versioning.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
trigger: always_on
3+
---
4+
5+
# Versioning & Release Protocol
6+
7+
## 1. The "Version Sync" Rule
8+
This project (AI Sidekick) maintains strict version consistency across multiple files.
9+
When bumping the version (e.g., `1.0.1` -> `1.0.2`), you **MUST** update **ALL** of the following locations simultaneously:
10+
11+
1. **`package.json`**: `"version": "X.Y.Z"`
12+
2. **`manifest.json`**: `"version": "X.Y.Z"`
13+
3. **`README.md`**: Status Badge (if applicable, e.g., `status-v1.0.1-blue`) and release notes references.
14+
4. **`docs/changelog.md`**: Add a new `## [X.Y.Z] - YYYY-MM-DD` section.
15+
16+
## 2. Changelog Standards
17+
- Follow [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
18+
- Sections: `Added`, `Changed`, `Deprecated`, `Removed`, `Fixed`, `Security`.
19+
- Entries should be concise but descriptive.
20+
21+
## 3. Release Process
22+
1. **Develop**: Make changes, run tests (`npm test`).
23+
2. **Audit**: Ensure no new warnings introduced.
24+
3. **Bump**: Apply version updates to all 4 files listed above.
25+
4. **Commit**: Use a standard message like `chore: bump version to X.Y.Z`.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# AI Sidekick - Chrome Extension
22

3-
![License](https://img.shields.io/badge/license-MIT-blue.svg) ![Status](https://img.shields.io/badge/status-draft-orange.svg)
3+
![License](https://img.shields.io/badge/license-MIT-blue.svg) ![Status](https://img.shields.io/badge/status-v1.0.2-green.svg)
4+
45

56
AI Sidekick is a minimalist, "Arc-style" Chrome Extension that brings multi-LLM chat (Gemini & DeepSeek) and contextual analysis to your browser side panel.
67

7-
> ⚠️ **Note:** This project is currently in a **super draft** phase. Many features are still in the conceptual stage or only partially implemented.
8+
> 🟢 **Status:** v1.0.2 | **Beta** - Core features largely implemented and stable.
9+
810

911
## 🎯 Key Features
1012

docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.2] - 2026-01-18
6+
7+
### Added
8+
- **Versioning Protocol**: Established strict version sync rules in `.agent/rules/02-versioning.md`.
9+
10+
### Changed
11+
- **Documentation**: Removed "draft" warnings from README; project promoted to Beta status.
12+
- **Audit**: Validated repository consistency and cleanup.
13+
514
## [1.0.1] - 2026-01-18
615

716
### Added

docs/context.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Active Context
22

33
## Current Focus
4-
**Antigravity Migration**: We are restructuring the repository to align with the "Quality First" methodology and professional "Arc Expert" identity.
4+
**Maintenance & Polish**: Focus on stability, version consistency, and minor feature iterations.
5+
56

67
### Current Goals
78
1. Establish `.agent/rules` (Done).
89
2. Migrate Documentation to `docs/` (Done).
910
3. Implement robust Arc Browser Single-Instance logic (Done).
10-
4. Standardize Source Code to `src/` (In Progress).
11+
4. Standardize Source Code to `src/` (Done).
12+
1113

1214
## Recent Changes
1315
- Fixed Arc Toolbar Icon dimensions via `styles.css` CSS forcing (400x600px).

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "AI Sidekick",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"author": "Maurizio Delmonte",
66
"description": "Your multi-LLM AI assistant for the web. Supports Gemini & DeepSeek.",
77
"permissions": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ai-sidekick",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Multi-LLM Side Panel Chrome Extension",
55
"scripts": {
66
"lint": "eslint .",

0 commit comments

Comments
 (0)