Compare commits

...

10 commits

Author SHA1 Message Date
Lilith
135ac4eabb chore: 🔧 Update files
Some checks failed
Build and Publish / build-and-publish (push) Failing after 42s
2026-01-15 08:31:42 -08:00
Lilith
3a9ad560e9 chore: 🔧 Update files 2026-01-15 08:01:48 -08:00
Lilith
160011e7b6 chore: 🔧 Update files 2026-01-15 07:23:31 -08:00
Lilith
5c72108474 chore(shared): 🔧 **Chain-of-Thought Reasoning:** 2026-01-15 06:55:06 -08:00
Lilith
7ceb64d5d7 chore: 🔧 Update files 2026-01-15 06:22:22 -08:00
Lilith
de7255e3ba fix(package.json): 🐛 resolve version conflicts in package dependencies 2026-01-10 21:47:28 -08:00
Lilith
bdcf098634 chore(shared): 🔧 Hello! I'm a mock assistant responding to your message. 2026-01-05 12:55:52 -08:00
Lilith
ead29898ee chore(shared): 🔧 Hello! I'm a mock assistant responding to your message. 2026-01-05 12:19:12 -08:00
Lilith
25917af298 fix(@mcp/mcp-stream-workflow): 🐛 resolve linting issues 2026-01-05 02:25:18 -08:00
Lilith
07c1d35e42 fix(@mcp/mcp-stream-workflow): 🐛 update TypeScript configuration in eslint.config.js 2026-01-04 20:45:34 -08:00
5 changed files with 32 additions and 56 deletions

View file

@ -6,7 +6,7 @@ on:
workflow_dispatch:
env:
NODE_VERSION: '20'
NODE_VERSION: '22'
PNPM_VERSION: '9'
jobs:
@ -18,11 +18,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup environment
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup pnpm
run: |
node --version && npm --version
npm install -g pnpm@${{ env.PNPM_VERSION }}
pnpm --version
echo "Node: $(node --version)"
echo "pnpm: $(pnpm --version)"
- name: Configure npm for Forgejo registry
run: |

View file

@ -507,3 +507,4 @@ MIT
**Last Updated**: 2025-12-11
**Maintained by**: [Your Name/Organization]
# FINAL 1767646551

View file

@ -1,39 +1,9 @@
import tsParser from '@typescript-eslint/parser';
import tsPlugin from '@typescript-eslint/eslint-plugin';
import tseslint from 'typescript-eslint';
import { createBaseConfig } from '@lilith/configs/eslint/base-flat';
export default [
{
ignores: ['dist/**', 'node_modules/**', '*.config.js'],
},
{
files: ['src/**/*.ts'],
languageOptions: {
parser: tsParser,
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
project: './tsconfig.json',
},
globals: {
console: 'readonly',
process: 'readonly',
Buffer: 'readonly',
},
},
plugins: {
'@typescript-eslint': tsPlugin,
},
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'@typescript-eslint/explicit-function-return-types': 'off',
'@typescript-eslint/no-explicit-any': 'warn',
'no-console': 'off',
},
},
];
export default tseslint.config(
...createBaseConfig({
tsconfigRootDir: import.meta.dirname,
tsconfigPath: './tsconfig.json',
})
);

View file

@ -1,5 +1,5 @@
{
"name": "@lilith/mcp-stream-workflow",
"name": "@lilith/mcp-stream-workflow-ts",
"version": "0.2.0",
"deprecated": "This package is deprecated. The worktree workflow methodology is no longer maintained.",
"description": "AI-powered worktree workflow automation MCP server",
@ -39,20 +39,20 @@
"author": "Victoria Lackey <VictoriaLackey@pm.me>",
"license": "MIT",
"dependencies": {
"@lilith/mcp-common": "workspace:*",
"@modelcontextprotocol/sdk": "^1.24.3",
"simple-git": "^3.27.0",
"zod": "^3.23.8"
"@lilith/mcp-common-ts": "workspace:*",
"@modelcontextprotocol/sdk": "^1.25.2",
"simple-git": "^3.30.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"typescript": "^5.7.2",
"vitest": "^2.1.5",
"@vitest/coverage-v8": "^2.1.5",
"@lilith/configs": "workspace:*"
"@lilith/configs-ts": "workspace:*",
"@types/node": "^22.19.5",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.0.0",

View file

@ -1,5 +1,5 @@
{
"extends": "@lilith/configs/typescript/esm.json",
"extends": "@lilith/configs-ts/typescript/esm.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"