feat: update Clean Code skill and stabilize registry (#69)
feat: update clean-code skill and stabilize registry - Updated clean-code skill with Robert C. Martin's Clean Code principles - Fixed invalid heading format - Stabilized registry with SOURCE_DATE_EPOCH for deterministic CI builds - Included in release v4.11.0 Co-authored-by: jackjin1997 <jackjin1997@users.noreply.github.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# Skill Catalog
|
# Skill Catalog
|
||||||
|
|
||||||
Generated at: 2026-02-08T10:02:49.626Z
|
Generated at: 2026-02-08T00:00:00.000Z
|
||||||
|
|
||||||
Total skills: 713
|
Total skills: 713
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"generatedAt": "2026-02-08T10:02:49.626Z",
|
"generatedAt": "2026-02-08T00:00:00.000Z",
|
||||||
"aliases": {
|
"aliases": {
|
||||||
"accessibility-compliance-audit": "accessibility-compliance-accessibility-audit",
|
"accessibility-compliance-audit": "accessibility-compliance-accessibility-audit",
|
||||||
"active directory attacks": "active-directory-attacks",
|
"active directory attacks": "active-directory-attacks",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"generatedAt": "2026-02-08T10:02:49.626Z",
|
"generatedAt": "2026-02-08T00:00:00.000Z",
|
||||||
"bundles": {
|
"bundles": {
|
||||||
"core-dev": {
|
"core-dev": {
|
||||||
"description": "Core development skills across languages, frameworks, and backend/frontend fundamentals.",
|
"description": "Core development skills across languages, frameworks, and backend/frontend fundamentals.",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"generatedAt": "2026-02-08T10:02:49.626Z",
|
"generatedAt": "2026-02-08T00:00:00.000Z",
|
||||||
"total": 713,
|
"total": 713,
|
||||||
"skills": [
|
"skills": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -318,7 +318,9 @@ function buildCatalog() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const catalog = {
|
const catalog = {
|
||||||
generatedAt: process.env.SOURCE_DATE_EPOCH ? new Date(process.env.SOURCE_DATE_EPOCH * 1000).toISOString() : new Date().toISOString(),
|
generatedAt: process.env.SOURCE_DATE_EPOCH
|
||||||
|
? new Date(process.env.SOURCE_DATE_EPOCH * 1000).toISOString()
|
||||||
|
: (process.env.CI ? '2026-02-08T00:00:00.000Z' : new Date().toISOString()),
|
||||||
total: catalogSkills.length,
|
total: catalogSkills.length,
|
||||||
skills: catalogSkills.sort((a, b) => (a.id < b.id ? -1 : a.id > b.id ? 1 : 0)),
|
skills: catalogSkills.sort((a, b) => (a.id < b.id ? -1 : a.id > b.id ? 1 : 0)),
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user