@pageai/ralph-loop 1.10.0 → 1.12.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/bin/cli.js +42 -10
- package/package.json +1 -1
- /package/{.agents → .agent}/skills/mysql/SKILL.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/character-sets.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/composite-indexes.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/connection-management.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/covering-indexes.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/data-types.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/deadlocks.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/explain-analysis.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/fulltext-indexes.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/index-maintenance.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/isolation-levels.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/json-column-patterns.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/n-plus-one.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/online-ddl.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/partitioning.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/primary-keys.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/query-optimization-pitfalls.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/replication-lag.md +0 -0
- /package/{.agents → .agent}/skills/mysql/references/row-locking-gotchas.md +0 -0
- /package/{.agents → .agent}/skills/postgres/SKILL.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/backup-recovery.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/index-optimization.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/indexing.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/memory-management-ops.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/monitoring.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/mvcc-transactions.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/mvcc-vacuum.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/optimization-checklist.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/partitioning.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/process-architecture.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-cli-api-insights.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-cli-commands.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-connection-pooling.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-connections.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-extensions.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/ps-insights.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/query-patterns.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/replication.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/schema-design.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/storage-layout.md +0 -0
- /package/{.agents → .agent}/skills/postgres/references/wal-operations.md +0 -0
package/bin/cli.js
CHANGED
|
@@ -39,18 +39,50 @@ const DIRS_WITH_GITKEEP = [
|
|
|
39
39
|
'.agent/tasks',
|
|
40
40
|
];
|
|
41
41
|
|
|
42
|
+
const SKILLS_ROOT = '../../.agent/skills';
|
|
43
|
+
|
|
42
44
|
// Symlinks to create in skills directories (relative to each skills dir)
|
|
43
45
|
const SKILL_SYMLINKS = [
|
|
44
|
-
{
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
{
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
{
|
|
53
|
-
|
|
46
|
+
{
|
|
47
|
+
name: 'component-refactoring',
|
|
48
|
+
target: `${SKILLS_ROOT}/component-refactoring/`
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'e2e-tester',
|
|
52
|
+
target: `${SKILLS_ROOT}/e2e-tester/`
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
name: 'frontend-code-review',
|
|
56
|
+
target: `${SKILLS_ROOT}/frontend-code-review/`
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'frontend-testing',
|
|
60
|
+
target: `${SKILLS_ROOT}/frontend-testing/`
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: 'prd-creator',
|
|
64
|
+
target: `${SKILLS_ROOT}/prd-creator/`
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: 'skill-creator',
|
|
68
|
+
target: `${SKILLS_ROOT}/skill-creator/`
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
name: 'vercel-react-best-practices',
|
|
72
|
+
target: `${SKILLS_ROOT}/vercel-react-best-practices/`
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'web-design-guidelines',
|
|
76
|
+
target: `${SKILLS_ROOT}/web-design-guidelines/`
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
name: 'mysql',
|
|
80
|
+
target: `${SKILLS_ROOT}/mysql/`
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
name: 'postgres',
|
|
84
|
+
target: `${SKILLS_ROOT}/postgres/`
|
|
85
|
+
},
|
|
54
86
|
];
|
|
55
87
|
|
|
56
88
|
// Files to copy (always overwrite)
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|