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
21 changes: 21 additions & 0 deletions .agents/plugins/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "propulsion",
"interface": {
"displayName": "Propulsion",
"developerName": "Moon Pixels"
},
"plugins": [
{
"name": "propulsion",
"source": {
"source": "local",
"path": "./"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Coding"
}
]
}
1 change: 1 addition & 0 deletions .agents/skills
47 changes: 47 additions & 0 deletions .codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "propulsion",
"version": "1.0.0",
"description": "Propulsion workflow routing and skills for agentic coding.",
"author": {
"name": "Moon Pixels"
},
"homepage": "https://github.com/moonpixels/propulsion",
"repository": "https://github.com/moonpixels/propulsion",
"license": "MIT",
"keywords": [
"propulsion",
"codex",
"codex-plugin",
"opencode",
"opencode-plugin",
"agentic-coding",
"skills",
"workflow",
"planning",
"tdd",
"debugging",
"review",
"guardrails",
"developer-tools"
],
"skills": "./skills/",
"hooks": "./hooks/hooks.json",
"interface": {
"displayName": "Propulsion",
"shortDescription": "Workflow routing and skills for agentic coding.",
"longDescription": "Propulsion adds a compact workflow skill set and high-priority startup routing guidance while preserving Codex tools and permissions.",
"developerName": "Moon Pixels",
"category": "Coding",
"capabilities": ["Interactive", "Read", "Write"],
"websiteURL": "https://github.com/moonpixels/propulsion",
"defaultPrompt": [
"Turn my idea into an implementation-ready plan with Propulsion",
"Debug and fix this bug with Propulsion guardrails",
"Review these changes with the Propulsion review workflow"
],
"brandColor": "#FF4F00",
"composerIcon": "./assets/propulsion_icon_square.png",
"logo": "./assets/banner.png",
"screenshots": []
}
}
6 changes: 0 additions & 6 deletions .opencode/package.json

This file was deleted.

229 changes: 0 additions & 229 deletions .opencode/plugins/propulsion.js

This file was deleted.

14 changes: 6 additions & 8 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,17 @@
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": ["node_modules/**", ".opencode/node_modules/**"],
"printWidth": 80,
"tabWidth": 4,
"singleQuote": true,
"sortImports": {
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
["builtin", "external"],
["internal", "subpath"],
["parent", "sibling", "index"],
"unknown"
]
},
"sortPackageJson": {
"sortScripts": true
},
"tabWidth": 4
}
}
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- When the user corrects your approach with a reusable, global rule for future work, ask whether they want it added to `AGENTS.md`; if they do, load the `agentic-config` skill and update `AGENTS.md`.
- When the user corrects you with a reusable, global rule, ask if they want it added to `AGENTS.md`.
- After implementing changes run `bun run checks` before handoff.
Loading