mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-31 06:03:29 +08:00
* feat(Design): skill health dashboard mockup * fix(comments): code according to comments
21 lines
381 B
JavaScript
21 lines
381 B
JavaScript
'use strict';
|
|
|
|
const provenance = require('./provenance');
|
|
const versioning = require('./versioning');
|
|
const tracker = require('./tracker');
|
|
const health = require('./health');
|
|
const dashboard = require('./dashboard');
|
|
|
|
module.exports = {
|
|
...provenance,
|
|
...versioning,
|
|
...tracker,
|
|
...health,
|
|
...dashboard,
|
|
provenance,
|
|
versioning,
|
|
tracker,
|
|
health,
|
|
dashboard,
|
|
};
|