Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .opencode/plugins/propulsion.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import fs from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';

const __dirname = path.dirname(fileURLToPath(import.meta.url));
const skillsDir = path.resolve(__dirname, '../../skills');
const additionalSkillsDir = path.resolve(__dirname, '../../additional/skills');
const dirname = path.dirname(fileURLToPath(import.meta.url));
const skillsDir = path.resolve(dirname, '../../skills');
const additionalSkillsDir = path.resolve(dirname, '../../additional/skills');
const additionalCommandsDir = path.resolve(
__dirname,
dirname,
'../../additional/commands',
);
const propulsionWorkflowPath = path.join(
Expand Down
61 changes: 20 additions & 41 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "propulsion",
"version": "0.9.1",
"version": "0.9.2",
"description": "Compact workflow skills for agentic coding in OpenCode.",
"homepage": "https://github.com/moonpixels/propulsion#readme",
"bugs": {
Expand Down Expand Up @@ -34,12 +34,9 @@
"test:opencode": "bash tests/opencode/run-tests.sh",
"test:unit": "bun test ./tests"
},
"dependencies": {
"@opencode-ai/plugin": "^1.4.0"
},
"devDependencies": {
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"oxlint": "^1.62.0",
"oxlint-tsgolint": "^0.20.0"
},
"packageManager": "bun@1.3.11"
Expand Down
4 changes: 2 additions & 2 deletions tests/propulsion-plugin.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { fileURLToPath } from 'node:url';

import { PropulsionPlugin } from '../.opencode/plugins/propulsion.js';

const __dirname = path.dirname(fileURLToPath(import.meta.url));
const repoRoot = path.resolve(__dirname, '..');
const dirname = path.dirname(fileURLToPath(import.meta.url));
const repoRoot = path.resolve(dirname, '..');
const skillsDir = path.join(repoRoot, 'skills');
const additionalSkillsDir = path.join(repoRoot, 'additional/skills');

Expand Down