mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-09 02:43:29 +08:00
feat(design): skill health dashboard mockup (#518)
* feat(Design): skill health dashboard mockup * fix(comments): code according to comments
This commit is contained in:
@@ -8,7 +8,7 @@ const tracker = require('./tracker');
|
||||
const versioning = require('./versioning');
|
||||
|
||||
const DAY_IN_MS = 24 * 60 * 60 * 1000;
|
||||
const PENDING_AMENDMENT_STATUSES = new Set(['pending', 'proposed', 'queued', 'open']);
|
||||
const PENDING_AMENDMENT_STATUSES = Object.freeze(new Set(['pending', 'proposed', 'queued', 'open']));
|
||||
|
||||
function roundRate(value) {
|
||||
if (value === null) {
|
||||
@@ -253,8 +253,11 @@ function formatHealthReport(report, options = {}) {
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
PENDING_AMENDMENT_STATUSES,
|
||||
calculateSuccessRate,
|
||||
collectSkillHealth,
|
||||
discoverSkills,
|
||||
filterRecordsWithinDays,
|
||||
formatHealthReport,
|
||||
summarizeHealthReport,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user