understanding-prime-env 0.1.2 → 0.1.3
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/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const path = require('path');
|
|
|
7
7
|
const os = require('os');
|
|
8
8
|
const readline = require('readline');
|
|
9
9
|
|
|
10
|
-
const SKILL_NAME = 'understand-
|
|
10
|
+
const SKILL_NAME = 'understand-prime-env';
|
|
11
11
|
const PACKAGE_ROOT = path.join(__dirname, '..');
|
|
12
12
|
const SKILL_MD_PATH = path.join(PACKAGE_ROOT, 'skills', SKILL_NAME, 'SKILL.md');
|
|
13
13
|
|
|
@@ -65,7 +65,7 @@ function installCursor() {
|
|
|
65
65
|
// Cursor MDC format: YAML front-matter + markdown body
|
|
66
66
|
const mdc = [
|
|
67
67
|
'---',
|
|
68
|
-
`description:
|
|
68
|
+
`description: understand-prime-env — generate HTML overview for a Prime Intellect verifiers environment`,
|
|
69
69
|
'globs:',
|
|
70
70
|
' - "**/*.py"',
|
|
71
71
|
'alwaysApply: false',
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: understand-
|
|
2
|
+
name: understand-prime-env
|
|
3
3
|
description: Generate a rich, self-contained HTML report that fully explains a Prime Intellect verifiers environment. Use this skill any time the user asks to understand, explain, document, visualize, or explore a verifiers environment — even if they just say "what does this environment do?", "explain this env", "give me an overview", or "generate an HTML for this environment". The skill reads the Python source files in the current directory, extracts the dataset, reward functions, rollout logic, and configuration parameters, and writes a beautiful HTML file to the environment folder.
|
|
4
4
|
---
|
|
5
5
|
|