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
29 changes: 29 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Source files (we publish compiled dist/)
src/

# Development
node_modules/
.github/
CLAUDE.md
AGENTS.md
.env
.env.local

# Build artifacts
dist/**/*.test.js
dist/**/*.test.d.ts
*.log

# IDE
.vscode/
.idea/
*.swp
*.swo

# Testing
coverage/
.nyc_output/

# OS
.DS_Store
Thumbs.db
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Agent Guidelines for workflow-automator
# Agent Guidelines for ActionFlow

This document provides guidelines for AI agents working on this repository.

Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 OpenStaticFish

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Workflow Automator
# ActionFlow

Interactive TUI for installing curated GitHub Actions workflows with a cyberpunk aesthetic.

Expand Down Expand Up @@ -30,8 +30,8 @@ bun run src/tui/index.tsx
Or install globally:

```bash
bun link
workflow-automator
bun install -g @openstaticfish/actionflow
actionflow
```

## Keyboard Shortcuts
Expand All @@ -50,7 +50,7 @@ workflow-automator

```
┌─────────────────────────────────────────────────────────────────┐
│ ⚡ WORKFLOW AUTOMATOR v1.0 Category: [opencode ▼] │
│ ⚡ ACTIONFLOW v0.1.0 Category: [opencode ▼] │
├──────────────────┬──────────────────────────────────────────────┤
│ 🌲 Tree │ ┌─ Workflow Details ──────────────────────┐│
│ ▾ pr │ │ 🔍 OpenCode AI PR Review ││
Expand Down
8 changes: 8 additions & 0 deletions bun.lock

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

53 changes: 47 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,67 @@
{
"name": "workflow-automator",
"module": "src/tui/index.tsx",
"type": "module",
"private": true,
"name": "@openstaticfish/actionflow",
"version": "0.1.0",
"description": "A terminal UI tool for managing and installing GitHub Actions workflow templates",
"license": "MIT",
"author": "OpenStaticFish <contact@openstaticfish.com>",
"repository": {
"type": "git",
"url": "https://github.com/openstaticfish/actionflow.git"
},
"homepage": "https://github.com/openstaticfish/actionflow#readme",
"bugs": {
"url": "https://github.com/openstaticfish/actionflow/issues"
},
"keywords": [
"github-actions",
"workflow",
"cli",
"terminal",
"tui",
"automation",
"ci-cd",
"templates"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"workflow-automator": "./src/tui/index.tsx"
"actionflow": "./dist/index.js",
"af": "./dist/index.js"
},
"files": [
"dist",
"workflows",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run src/tui/index.tsx",
"build": "bun build src/tui/index.tsx --outdir=dist --target=bun",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir dist",
"prepublishOnly": "bun run build && bun run build:types",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.2.0"
"@types/react": "^18.2.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"ink": "^5.0.0",
"react": "^18.2.0",
"react-devtools-core": "^7.0.1",
"yaml": "^2.4.0"
}
}
2 changes: 1 addition & 1 deletion src/tui/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function Header({
alignItems="center"
>
<Text bold color={cyberpunkTheme.colors.primary}>
WORKFLOW AUTOMATOR
ACTIONFLOW
</Text>

<Box marginLeft={2}>
Expand Down
12 changes: 9 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
Expand All @@ -12,7 +12,11 @@
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",

// Best practices
"strict": true,
Expand All @@ -25,5 +29,7 @@
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}