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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,10 @@ Legacy/archive/
# Resource cache directory (downloaded forms, templates, etc.)
resources/
Cyrano/resources/

# Compiled TypeScript outputs (except configs and intentional sources)
Cyrano/src/**/*.js
Cyrano/tests/**/*.js
!**/*.config.js
!Cyrano/http-bridge.js
!Cyrano/mcp-integration.js
11 changes: 11 additions & 0 deletions Cyrano/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ dist/
build/
*.tsbuildinfo

# Compiled JavaScript from TypeScript (should be generated at build time)
# Keep config files and intentional JS source files
src/**/*.js
!src/**/*.config.js
tests/**/*.js
!tests/**/*.config.js

# But allow these specific intentional JS files:
!http-bridge.js
!mcp-integration.js

# Runtime files
*.pid
*.log
Expand Down
6 changes: 1 addition & 5 deletions Cyrano/http-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,4 @@ app.get('/mcp/status', (req, res) => {

app.listen(port, () => {
console.log(`Cyrano MCP Bridge running on port ${port}`);
});

)
)
}
});
6 changes: 1 addition & 5 deletions Cyrano/shared-assets/working-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,4 @@ app.get('/mcp/status', (req, res) => {

app.listen(port, () => {
console.log(`Cyrano MCP Bridge running on port ${port}`);
});

)
)
}
});
11 changes: 1 addition & 10 deletions Cyrano/src/tools/verification/citations/michigan-citations.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,13 +303,4 @@ export class MichiganCitationValidator {
}
return result;
}
export const michiganCitationValidator = new MichiganCitationValidator();

}
}
}
)
}
}
}
)
export const michiganCitationValidator = new MichiganCitationValidator();
2 changes: 1 addition & 1 deletion Cyrano/tests/mcp-compliance/http-bridge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe('MCP HTTP Bridge Compliance', () => {
expect(data).toHaveProperty('content');
expect(Array.isArray(data.content)).toBe(true);
});
;
});

describe('Module Exposure', () => {
it('should expose chronometric_module via HTTP', async () => {
Expand Down
Loading