@lousy-agents/cli 2.2.1 → 2.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/copilot-with-fastify/biome.json +1 -1
- package/cli/copilot-with-citty/.devcontainer/devcontainer.json +76 -0
- package/cli/copilot-with-citty/.editorconfig +16 -0
- package/cli/copilot-with-citty/.github/ISSUE_TEMPLATE/feature-to-spec.yml +54 -0
- package/cli/copilot-with-citty/.github/copilot-instructions.md +228 -0
- package/cli/copilot-with-citty/.github/instructions/pipeline.instructions.md +92 -0
- package/cli/copilot-with-citty/.github/instructions/software-architecture.instructions.md +166 -0
- package/cli/copilot-with-citty/.github/instructions/spec.instructions.md +127 -0
- package/cli/copilot-with-citty/.github/instructions/test.instructions.md +157 -0
- package/cli/copilot-with-citty/.github/specs/README.md +84 -0
- package/cli/copilot-with-citty/.github/workflows/assign-copilot.yml +59 -0
- package/cli/copilot-with-citty/.github/workflows/ci.yml +67 -0
- package/cli/copilot-with-citty/.nvmrc +1 -0
- package/cli/copilot-with-citty/.vscode/extensions.json +13 -0
- package/cli/copilot-with-citty/.vscode/launch.json +25 -0
- package/cli/copilot-with-citty/.vscode/mcp.json +19 -0
- package/cli/copilot-with-citty/.yamllint +18 -0
- package/cli/copilot-with-citty/biome.json +31 -0
- package/cli/copilot-with-citty/package.json +29 -0
- package/cli/copilot-with-citty/tsconfig.json +28 -0
- package/cli/copilot-with-citty/vitest.config.ts +15 -0
- package/cli/copilot-with-citty/vitest.setup.ts +2 -0
- package/dist/index.js +205 -55
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +3 -0
- package/dist/mcp-server.js.map +1 -1
- package/package.json +3 -2
- package/ui/copilot-with-react/biome.json +1 -1
package/dist/mcp-server.js
CHANGED
|
@@ -46113,6 +46113,7 @@ function getGlobalWacContext() {
|
|
|
46113
46113
|
const workflow = new Workflow("copilot-setup-steps.yml", {
|
|
46114
46114
|
name: "Copilot Setup Steps",
|
|
46115
46115
|
on: {
|
|
46116
|
+
// biome-ignore lint/style/useNamingConvention: GitHub Actions YAML schema requires snake_case
|
|
46116
46117
|
workflow_dispatch: {},
|
|
46117
46118
|
push: {
|
|
46118
46119
|
branches: [
|
|
@@ -46122,6 +46123,7 @@ function getGlobalWacContext() {
|
|
|
46122
46123
|
".github/workflows/copilot-setup-steps.yml"
|
|
46123
46124
|
]
|
|
46124
46125
|
},
|
|
46126
|
+
// biome-ignore lint/style/useNamingConvention: GitHub Actions YAML schema requires snake_case
|
|
46125
46127
|
pull_request: {
|
|
46126
46128
|
branches: [
|
|
46127
46129
|
"main"
|
|
@@ -46560,6 +46562,7 @@ async function mcp_server_main() {
|
|
|
46560
46562
|
await server.connect(transport);
|
|
46561
46563
|
}
|
|
46562
46564
|
mcp_server_main().catch((error)=>{
|
|
46565
|
+
// biome-ignore lint/suspicious/noConsole: composition root error handler runs before any logger is available
|
|
46563
46566
|
console.error("Failed to start MCP server:", error);
|
|
46564
46567
|
process.exit(1);
|
|
46565
46568
|
});
|