@chronova/pi-plugin 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -20,24 +20,8 @@ Automatically sends coding activity heartbeats to your [Chronova](https://chrono
20
20
 
21
21
  ## Installation
22
22
 
23
- ### Option 1: Clone and build
24
-
25
- ```bash
26
- git clone https://github.com/nx-solutions-ug/chronova-pi-plugin.git ~/.projects/chronova-pi-plugin
27
- cd ~/.projects/chronova-pi-plugin
28
- npm install
29
- npm run build
30
- ln -s ~/.projects/chronova-pi-plugin ~/.omp/agent/extensions/chronova-pi-plugin
31
- ```
32
-
33
- ### Option 2: Direct symlink (requires Node.js for build)
34
-
35
23
  ```bash
36
- git clone https://github.com/nx-solutions-ug/chronova-pi-plugin.git /tmp/chronova-pi-plugin
37
- cd /tmp/chronova-pi-plugin
38
- npm install && npm run build
39
- mkdir -p ~/.omp/agent/extensions/chronova-pi-plugin
40
- cp dist/*.js package.json ~/.omp/agent/extensions/chronova-pi-plugin/
24
+ omp plugin install @chronova/pi-plugin
41
25
  ```
42
26
 
43
27
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chronova/pi-plugin",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Chronova heartbeat tracking extension for oh-my-pi — sends coding activity to your Chronova dashboard via chronova-cli",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",