-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclaude-linear-skill.js
More file actions
455 lines (387 loc) · 11.4 KB
/
claude-linear-skill.js
File metadata and controls
455 lines (387 loc) · 11.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#!/usr/bin/env node
/**
* Claude Linear Update Skill
* Automatically updates Linear tasks based on Claude's work
*/
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import dotenv from 'dotenv';
import chalk from 'chalk';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
// Load environment variables
dotenv.config({
path: path.join(__dirname, '..', '.env'),
override: true,
silent: true
});
class LinearUpdateSkill {
constructor() {
this.apiKey = process.env.LINEAR_API_KEY;
this.graphqlUrl = 'https://api.linear.app/graphql';
this.logFile = path.join(process.env.HOME, '.stackmemory', 'logs', 'linear-skill.log');
// State mappings
this.stateMap = {
'todo': 'backlog',
'backlog': 'backlog',
'in_progress': 'started',
'in progress': 'started',
'started': 'started',
'completed': 'completed',
'done': 'completed',
'finished': 'completed',
'implemented': 'completed',
'blocked': 'blocked',
'cancelled': 'cancelled',
'canceled': 'cancelled',
};
}
/**
* Parse task identifier from text
*/
parseTaskId(text) {
// Match STA-XXX pattern
const staMatch = text.match(/STA-(\d+)/i);
if (staMatch) {
return { identifier: staMatch[0].toUpperCase(), type: 'identifier' };
}
// Match Linear URL
const urlMatch = text.match(/linear\.app\/[^\/]+\/issue\/([^\/\s]+)/);
if (urlMatch) {
return { identifier: urlMatch[1], type: 'identifier' };
}
// Match UUID pattern
const uuidMatch = text.match(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/);
if (uuidMatch) {
return { identifier: uuidMatch[0], type: 'id' };
}
return null;
}
/**
* Detect status from text
*/
detectStatus(text) {
const lowerText = text.toLowerCase();
// Check for explicit status keywords
for (const [keyword, status] of Object.entries(this.stateMap)) {
if (lowerText.includes(keyword)) {
return status;
}
}
// Check for action keywords
if (lowerText.includes('implement') || lowerText.includes('complet') ||
lowerText.includes('done') || lowerText.includes('finish')) {
return 'completed';
}
if (lowerText.includes('start') || lowerText.includes('working on') ||
lowerText.includes('in progress')) {
return 'started';
}
if (lowerText.includes('block')) {
return 'blocked';
}
return null;
}
/**
* Extract implementation details from text
*/
extractImplementationDetails(text) {
const details = [];
// Extract features
const featuresMatch = text.match(/(?:features?|implemented?|added?)[::\s]*([\s\S]*?)(?=\n\n|\n[A-Z]|$)/i);
if (featuresMatch) {
details.push('## Implementation Details\n' + featuresMatch[1].trim());
}
// Extract technical details
const techMatch = text.match(/(?:technical|implementation)[::\s]*([\s\S]*?)(?=\n\n|\n[A-Z]|$)/i);
if (techMatch) {
details.push('## Technical Implementation\n' + techMatch[1].trim());
}
// Extract file changes
const filesMatch = text.match(/(?:files?|created?|modified?)[::\s]*([\s\S]*?)(?=\n\n|\n[A-Z]|$)/i);
if (filesMatch) {
details.push('## Files Changed\n' + filesMatch[1].trim());
}
// Add timestamp
details.push(`\n---\n_Updated by Claude: ${new Date().toISOString()}_`);
return details.join('\n\n');
}
/**
* Get Linear issue by identifier
*/
async getIssue(identifier) {
const query = `
query GetIssue($identifier: String!) {
issue(id: $identifier) {
id
identifier
title
description
state {
id
name
type
}
}
}
`;
try {
const response = await fetch(this.graphqlUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': this.apiKey,
},
body: JSON.stringify({
query,
variables: { identifier },
}),
});
const data = await response.json();
if (data.errors) {
this.log(`Error fetching issue: ${data.errors[0].message}`, 'ERROR');
return null;
}
return data.data.issue;
} catch (error) {
this.log(`Failed to fetch issue: ${error.message}`, 'ERROR');
return null;
}
}
/**
* Get Linear state ID by name
*/
async getStateId(stateName) {
const query = `
query GetStates {
workflowStates {
nodes {
id
name
type
}
}
}
`;
try {
const response = await fetch(this.graphqlUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': this.apiKey,
},
body: JSON.stringify({ query }),
});
const data = await response.json();
if (data.errors) {
this.log(`Error fetching states: ${data.errors[0].message}`, 'ERROR');
return null;
}
const states = data.data.workflowStates.nodes;
const state = states.find(s => s.type === stateName || s.name.toLowerCase() === stateName);
return state ? state.id : null;
} catch (error) {
this.log(`Failed to fetch states: ${error.message}`, 'ERROR');
return null;
}
}
/**
* Update Linear issue
*/
async updateIssue(issueId, updates) {
const mutation = `
mutation UpdateIssue($id: String!, $input: IssueUpdateInput!) {
issueUpdate(id: $id, input: $input) {
success
issue {
id
identifier
title
state {
name
}
}
}
}
`;
try {
const response = await fetch(this.graphqlUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': this.apiKey,
},
body: JSON.stringify({
query: mutation,
variables: {
id: issueId,
input: updates,
},
}),
});
const data = await response.json();
if (data.errors) {
this.log(`Error updating issue: ${data.errors[0].message}`, 'ERROR');
return false;
}
if (data.data.issueUpdate.success) {
const issue = data.data.issueUpdate.issue;
this.log(`Updated ${issue.identifier}: ${issue.state.name}`);
return true;
}
return false;
} catch (error) {
this.log(`Failed to update issue: ${error.message}`, 'ERROR');
return false;
}
}
/**
* Process update request
*/
async processUpdate(text, options = {}) {
// Parse task ID
const taskInfo = this.parseTaskId(text);
if (!taskInfo) {
this.log('No task identifier found in text');
return { success: false, reason: 'No task identifier found' };
}
this.log(`Processing update for ${taskInfo.identifier}`);
// Get issue details
const issue = await this.getIssue(taskInfo.identifier);
if (!issue) {
return { success: false, reason: 'Issue not found' };
}
// Prepare updates
const updates = {};
// Detect and set new status
const newStatus = options.status || this.detectStatus(text);
if (newStatus) {
const stateId = await this.getStateId(newStatus);
if (stateId) {
updates.stateId = stateId;
this.log(`Setting status to ${newStatus}`);
}
}
// Add implementation details if completing
if (newStatus === 'completed' && options.addDetails !== false) {
const details = this.extractImplementationDetails(text);
if (details) {
updates.description = issue.description + '\n\n' + details;
this.log('Adding implementation details');
}
}
// Add comment if provided
if (options.comment) {
updates.comment = {
body: options.comment,
};
}
// Update the issue
if (Object.keys(updates).length > 0) {
const success = await this.updateIssue(issue.id, updates);
return {
success,
issue: issue.identifier,
updates: Object.keys(updates),
};
}
return { success: false, reason: 'No updates to apply' };
}
/**
* Log message
*/
log(message, level = 'INFO') {
const timestamp = new Date().toISOString();
const logMessage = `[${timestamp}] [${level}] ${message}\n`;
console.log(level === 'ERROR' ? chalk.red(message) : chalk.green(message));
try {
fs.appendFileSync(this.logFile, logMessage);
} catch {
// Silent fail
}
}
/**
* Batch update multiple tasks
*/
async batchUpdate(updates) {
const results = [];
for (const update of updates) {
const result = await this.processUpdate(update.text, update.options);
results.push({
...result,
original: update,
});
// Rate limiting
await new Promise(resolve => setTimeout(resolve, 500));
}
return results;
}
}
// CLI interface
async function main() {
const skill = new LinearUpdateSkill();
if (!skill.apiKey) {
console.error(chalk.red('LINEAR_API_KEY not found in environment'));
process.exit(1);
}
const command = process.argv[2];
const args = process.argv.slice(3).join(' ');
if (!command) {
console.log(chalk.yellow('Linear Update Skill'));
console.log('Usage:');
console.log(' claude-linear-skill update <text> - Update task from text');
console.log(' claude-linear-skill detect <text> - Detect task and status');
console.log(' claude-linear-skill test - Test connection');
console.log();
console.log('Examples:');
console.log(' claude-linear-skill update "STA-287 is completed with infinite storage"');
console.log(' claude-linear-skill update "Starting work on STA-288"');
process.exit(0);
}
switch (command) {
case 'update':
if (!args) {
console.error(chalk.red('Please provide update text'));
process.exit(1);
}
const result = await skill.processUpdate(args);
if (result.success) {
console.log(chalk.green(`✅ Updated ${result.issue}`));
console.log('Updates:', result.updates.join(', '));
} else {
console.log(chalk.red(`❌ Update failed: ${result.reason}`));
}
break;
case 'detect':
if (!args) {
console.error(chalk.red('Please provide text to analyze'));
process.exit(1);
}
const taskId = skill.parseTaskId(args);
const status = skill.detectStatus(args);
console.log('Detected:');
console.log(` Task: ${taskId ? taskId.identifier : 'Not found'}`);
console.log(` Status: ${status || 'Not detected'}`);
break;
case 'test':
const testResult = await skill.getStateId('backlog');
if (testResult) {
console.log(chalk.green('✅ Linear API connection successful'));
} else {
console.log(chalk.red('❌ Linear API connection failed'));
}
break;
default:
console.error(chalk.red(`Unknown command: ${command}`));
process.exit(1);
}
}
// Export for use in other scripts
export { LinearUpdateSkill };
// Run if called directly
if (import.meta.url === `file://${process.argv[1]}`) {
main().catch(error => {
console.error(chalk.red('Error:'), error);
process.exit(1);
});
}