Skip to content

Commit 49dacaf

Browse files
author
Matthew Valancy
committed
Replace hierarchical terminology and update to v0.2.1-alpha
- Change 'assignee' to 'contributor' throughout codebase - Replace 'assignment' with 'contribution' and 'picked up' - Update 'Unassigned' to 'Available' for better inclusivity - Replace top-down language with peer collaboration terms - Bump version to v0.2.1-alpha
1 parent 3b4454e commit 49dacaf

16 files changed

Lines changed: 86 additions & 86 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
GraphDone is a graph-native project management system that reimagines work coordination through dependencies and democratic prioritization rather than hierarchical assignments. The project is in active development (v0.2.0-alpha) with core architecture implemented and working foundation.
7+
GraphDone is a graph-native project management system that reimagines work coordination through dependencies and democratic prioritization rather than hierarchical assignments. The project is in active development (v0.2.1-alpha) with core architecture implemented and working foundation.
88

99
## Core Philosophy
1010

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphDone
22

3-
> Project management for teams who think differently. Coordinate through dependencies and outcomes, not hierarchies and assignments.
3+
> Project management for teams who think differently. Coordinate through dependencies and outcomes, not hierarchies and top-down control.
44
55
![GraphDone UI Screenshot](./docs/graphdone_ui.png)
66

@@ -24,7 +24,7 @@ GraphDone reimagines project management as a collaborative graph where work flow
2424

2525
| Traditional PM | GraphDone |
2626
|----------------|-----------|
27-
| Hierarchical task assignment | Natural dependency flows |
27+
| Hierarchical task control | Natural dependency flows |
2828
| Manager-driven priorities | Democratic community validation |
2929
| Linear project timelines | Multi-level graph navigation |
3030
| Human-only collaboration | Human + AI peer collaboration |

docs/philosophy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GraphDone visualizes work as it actually exists: a network of interconnected out
1818

1919
### People Contribute Best When They Choose How
2020

21-
High-quality contributors are driven by intrinsic motivation - curiosity, mastery, purpose, and peer recognition. External pressure, arbitrary deadlines, and top-down assignments often reduce both quality and satisfaction.
21+
High-quality contributors are driven by intrinsic motivation - curiosity, mastery, purpose, and peer recognition. External pressure, arbitrary deadlines, and top-down directives often reduce both quality and satisfaction.
2222

2323
Our graph-based approach lets people see what needs doing and choose their engagement path. Work becomes exploration rather than obligation.
2424

@@ -143,6 +143,6 @@ We envision a world where:
143143

144144
GraphDone is our contribution to this future - a tool that respects how people actually think, work, and collaborate while providing the coordination benefits of modern project management.
145145

146-
From todo lists to todone lists. From assignments to explorations. From control to connection.
146+
From todo lists to todone lists. From directives to explorations. From control to connection.
147147

148148
This is project management for people who think differently, built by people who think differently, in service of a more inclusive and effective future of work.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphdone",
3-
"version": "0.2.0-alpha",
3+
"version": "0.2.1-alpha",
44
"description": "Project management for teams who think differently",
55
"private": true,
66
"workspaces": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/core",
3-
"version": "0.2.0-alpha",
3+
"version": "0.2.1-alpha",
44
"description": "Core graph engine for GraphDone",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/server",
3-
"version": "0.2.0-alpha",
3+
"version": "0.2.1-alpha",
44
"description": "GraphQL API server for GraphDone",
55
"main": "dist/index.js",
66
"scripts": {

packages/server/src/scripts/seed.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ async function seed() {
197197
console.log(`✅ Created ${contributors.length} contributors`);
198198

199199
// Connect some contributors to work items
200-
const assignments = [
200+
const contributions = [
201201
{ contributorId: 'contrib-1', workItemId: 'wi-1' },
202202
{ contributorId: 'contrib-1', workItemId: 'wi-5' },
203203
{ contributorId: 'contrib-2', workItemId: 'wi-6' },
@@ -206,15 +206,15 @@ async function seed() {
206206
{ contributorId: 'contrib-5', workItemId: 'wi-9' }
207207
];
208208

209-
for (const assignment of assignments) {
209+
for (const contribution of contributions) {
210210
await session.run(
211211
`MATCH (c:Contributor {id: $contributorId})
212212
MATCH (w:WorkItem {id: $workItemId})
213213
CREATE (c)-[:CONTRIBUTES_TO]->(w)`,
214-
assignment
214+
contribution
215215
);
216216
}
217-
console.log(`✅ Created ${assignments.length} contributor assignments`);
217+
console.log(`✅ Created ${contributions.length} contributor connections`);
218218

219219
console.log('🎉 Database seeding completed successfully!');
220220

packages/web/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ VITE_GRAPHQL_WS_URL=ws://localhost:3127/graphql
44

55
# App configuration
66
VITE_APP_NAME=GraphDone
7-
VITE_APP_VERSION=0.2.0-alpha
7+
VITE_APP_VERSION=0.2.1-alpha
88

99
# Feature flags
1010
VITE_ENABLE_SUBSCRIPTIONS=true

packages/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
99
<link rel="manifest" href="/manifest.json" />
1010
<title>GraphDone - Project Management Reimagined</title>
11-
<meta name="description" content="Project management for teams who think differently. Coordinate through dependencies and outcomes, not hierarchies and assignments." />
11+
<meta name="description" content="Project management for teams who think differently. Coordinate through dependencies and outcomes, not hierarchies and top-down control." />
1212
</head>
1313
<body>
1414
<div id="root">

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphdone/web",
3-
"version": "0.2.0-alpha",
3+
"version": "0.2.1-alpha",
44
"description": "React web application for GraphDone",
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)