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
23 changes: 20 additions & 3 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,33 @@
{
"name": "code-please",
"name": "language-server-please",
"owner": {
"name": "PassionFactory"
},
"plugins": [
{
"name": "code-please",
"description": "Core LSP servers (Biome, ESLint, Svelte, Deno, etc.)",
"source": "./"
},
{
"name": "reflexion",
"source": "./plugins/reflexion"
"name": "typescript-lsp",
"description": "TypeScript/JavaScript Language Server",
"source": "./plugins/typescript-lsp"
},
{
"name": "vue-lsp",
"description": "Vue Language Server with TypeScript Support",
"source": "./plugins/vue-lsp"
},
{
"name": "graphql-lsp",
"description": "GraphQL Language Server",
"source": "./plugins/graphql-lsp"
},
{
"name": "eslint-lsp",
"description": "ESLint Language Server",
"source": "./plugins/eslint-lsp"
}
]
}
8 changes: 4 additions & 4 deletions packages/logger/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ function createRootLogger(): pino.Logger {
console.error('[logger] Falling back to JSON output')
}

// Fallback to JSON output
return pino(options, pino.destination(2))
// Fallback to JSON output (sync mode for bundled binaries)
return pino(options, pino.destination({ fd: 2, sync: true }))
}
}

// Production: JSON to stderr
return pino(options, pino.destination(2))
// Production: JSON to stderr (sync mode for bundled binaries)
return pino(options, pino.destination({ fd: 2, sync: true }))
}

// Singleton root logger
Expand Down
26 changes: 26 additions & 0 deletions plugins/eslint-lsp/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "eslint-lsp",
"version": "0.1.17",
"description": "ESLint Language Server for Claude Code",
"repository": "https://github.com/chatbot-pf/code-please",
"author": {
"name": "PassionFactory"
},
"lspServers": {
"eslint": {
"command": "bunx",
"args": ["@pleaseai/code@^0.1.0", "lsp-server", "eslint"],
"extensionToLanguage": {
".ts": "typescript",
".tsx": "typescriptreact",
".js": "javascript",
".jsx": "javascriptreact",
".mjs": "javascript",
".cjs": "javascript",
".mts": "typescript",
".cts": "typescript",
".vue": "vue"
}
}
}
}
25 changes: 25 additions & 0 deletions plugins/graphql-lsp/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "graphql-lsp",
"version": "0.1.17",
"description": "GraphQL Language Server for Claude Code",
"repository": "https://github.com/chatbot-pf/code-please",
"author": {
"name": "PassionFactory"
},
"lspServers": {
"graphql": {
"command": "bunx",
"args": ["-p", "graphql-language-service-cli@^3.1.0", "graphql-lsp", "server", "-m", "stream"],
"extensionToLanguage": {
".graphql": "graphql",
".graphqls": "graphql",
".gql": "graphql",
".ts": "typescript",
".tsx": "typescriptreact",
".js": "javascript",
".jsx": "javascriptreact",
".vue": "vue"
}
}
}
}
12 changes: 0 additions & 12 deletions plugins/reflexion/.claude-plugin/plugin.json

This file was deleted.

267 changes: 0 additions & 267 deletions plugins/reflexion/README.md

This file was deleted.

Loading