Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .cline/rules/update-project-status-on-task-change.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Update Project Status On Task Change
on:
file_change:
paths:
- hgrp.pm/ProjectStatus.json

jobs:
update-status:
runs-on: local
steps:
- name: Calculate overall percent done
run: node scripts/updateProjectStatus.js
- name: Commit and push changes
run: |
git config --global user.name "cline-bot"
git config --global user.email "[email protected]"
git add hgrp.pm/ProjectStatus.json
git commit -m "Update project status [cline]"
git push
24 changes: 24 additions & 0 deletions .github/workflows/windsurf-update-status.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update Project Status On Task Change
on:
file_change:
paths:
- hgrp.pm/ProjectStatus.json

jobs:
update-status:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Calculate overall percent done
run: |
node scripts/updateProjectStatus.js

- name: Commit and push changes
run: |
git config --global user.name "windsurf-bot"
git config --global user.email "[email protected]"
git add hgrp.pm/ProjectStatus.json
git commit -m "Update project status [windsurf]"
git push
25 changes: 25 additions & 0 deletions hgrp.pm/ProjectStatus.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"project_name": "chaos-coder",
"last_updated": "2025-04-24T22:37:45.840Z",
"tasks": [
{
"id": 1,
"title": "Design API",
"status": "todo",
"percent_done": 0
},
{
"id": 2,
"title": "Build UI",
"status": "todo",
"percent_done": 0
},
{
"id": 3,
"title": "Write specs",
"status": "todo",
"percent_done": 0
}
],
"overall_percent_done": 0
}