oh-my-openidea 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/dist/cli/index.js +42 -35
- package/dist/index.js +32 -25
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -13783,10 +13783,34 @@ import { dirname, join as join2 } from "path";
|
|
|
13783
13783
|
import { fileURLToPath } from "url";
|
|
13784
13784
|
var CUSTOM_SKILLS = [
|
|
13785
13785
|
{
|
|
13786
|
-
name: "
|
|
13787
|
-
description: "
|
|
13788
|
-
allowedAgents: ["orchestrator", "
|
|
13789
|
-
sourcePath: "src/skills/
|
|
13786
|
+
name: "literature-review",
|
|
13787
|
+
description: "Structured literature survey workflow",
|
|
13788
|
+
allowedAgents: ["orchestrator", "surveyor", "synthesizer"],
|
|
13789
|
+
sourcePath: "src/skills/literature-review"
|
|
13790
|
+
},
|
|
13791
|
+
{
|
|
13792
|
+
name: "hypothesis-generation",
|
|
13793
|
+
description: "Gap-driven hypothesis generation workflow",
|
|
13794
|
+
allowedAgents: ["orchestrator", "synthesizer"],
|
|
13795
|
+
sourcePath: "src/skills/hypothesis-generation"
|
|
13796
|
+
},
|
|
13797
|
+
{
|
|
13798
|
+
name: "idea-critique",
|
|
13799
|
+
description: "Multi-round adversarial idea review workflow",
|
|
13800
|
+
allowedAgents: ["orchestrator", "critic"],
|
|
13801
|
+
sourcePath: "src/skills/idea-critique"
|
|
13802
|
+
},
|
|
13803
|
+
{
|
|
13804
|
+
name: "experiment-design",
|
|
13805
|
+
description: "Experimental plan design workflow",
|
|
13806
|
+
allowedAgents: ["orchestrator", "architect"],
|
|
13807
|
+
sourcePath: "src/skills/experiment-design"
|
|
13808
|
+
},
|
|
13809
|
+
{
|
|
13810
|
+
name: "paper-outline",
|
|
13811
|
+
description: "Paper outline generation workflow",
|
|
13812
|
+
allowedAgents: ["orchestrator", "writer"],
|
|
13813
|
+
sourcePath: "src/skills/paper-outline"
|
|
13790
13814
|
}
|
|
13791
13815
|
];
|
|
13792
13816
|
function getCustomSkillsDir() {
|
|
@@ -13832,39 +13856,22 @@ function installCustomSkill(skill) {
|
|
|
13832
13856
|
// src/cli/skills.ts
|
|
13833
13857
|
var RECOMMENDED_SKILLS = [
|
|
13834
13858
|
{
|
|
13835
|
-
name: "
|
|
13836
|
-
repo: "https://github.com/
|
|
13837
|
-
skillName: "
|
|
13838
|
-
allowedAgents: ["orchestrator"
|
|
13839
|
-
description: "
|
|
13859
|
+
name: "simplify",
|
|
13860
|
+
repo: "https://github.com/brianlovin/claude-config",
|
|
13861
|
+
skillName: "simplify",
|
|
13862
|
+
allowedAgents: ["orchestrator"],
|
|
13863
|
+
description: "YAGNI code simplification expert"
|
|
13840
13864
|
},
|
|
13841
13865
|
{
|
|
13842
|
-
name: "
|
|
13843
|
-
repo: "https://github.com/
|
|
13844
|
-
skillName: "
|
|
13845
|
-
allowedAgents: ["
|
|
13846
|
-
description: "
|
|
13847
|
-
|
|
13848
|
-
|
|
13849
|
-
|
|
13850
|
-
|
|
13851
|
-
skillName: "idea-critique",
|
|
13852
|
-
allowedAgents: ["orchestrator", "critic"],
|
|
13853
|
-
description: "Multi-round adversarial idea review workflow"
|
|
13854
|
-
},
|
|
13855
|
-
{
|
|
13856
|
-
name: "experiment-design",
|
|
13857
|
-
repo: "https://github.com/ZeguanXiao/oh-my-openidea",
|
|
13858
|
-
skillName: "experiment-design",
|
|
13859
|
-
allowedAgents: ["orchestrator", "architect"],
|
|
13860
|
-
description: "Experimental plan design workflow"
|
|
13861
|
-
},
|
|
13862
|
-
{
|
|
13863
|
-
name: "paper-outline",
|
|
13864
|
-
repo: "https://github.com/ZeguanXiao/oh-my-openidea",
|
|
13865
|
-
skillName: "paper-outline",
|
|
13866
|
-
allowedAgents: ["orchestrator", "writer"],
|
|
13867
|
-
description: "Paper outline generation workflow"
|
|
13866
|
+
name: "agent-browser",
|
|
13867
|
+
repo: "https://github.com/vercel-labs/agent-browser",
|
|
13868
|
+
skillName: "agent-browser",
|
|
13869
|
+
allowedAgents: ["designer"],
|
|
13870
|
+
description: "High-performance browser automation",
|
|
13871
|
+
postInstallCommands: [
|
|
13872
|
+
"npm install -g agent-browser",
|
|
13873
|
+
"agent-browser install"
|
|
13874
|
+
]
|
|
13868
13875
|
}
|
|
13869
13876
|
];
|
|
13870
13877
|
function installSkill(skill) {
|
package/dist/index.js
CHANGED
|
@@ -16,50 +16,57 @@ var __export = (target, all) => {
|
|
|
16
16
|
|
|
17
17
|
// src/cli/custom-skills.ts
|
|
18
18
|
var CUSTOM_SKILLS = [
|
|
19
|
-
{
|
|
20
|
-
name: "cartography",
|
|
21
|
-
description: "Repository understanding and hierarchical codemap generation",
|
|
22
|
-
allowedAgents: ["orchestrator", "explorer"],
|
|
23
|
-
sourcePath: "src/skills/cartography"
|
|
24
|
-
}
|
|
25
|
-
];
|
|
26
|
-
|
|
27
|
-
// src/cli/skills.ts
|
|
28
|
-
var RECOMMENDED_SKILLS = [
|
|
29
19
|
{
|
|
30
20
|
name: "literature-review",
|
|
31
|
-
|
|
32
|
-
skillName: "literature-review",
|
|
21
|
+
description: "Structured literature survey workflow",
|
|
33
22
|
allowedAgents: ["orchestrator", "surveyor", "synthesizer"],
|
|
34
|
-
|
|
23
|
+
sourcePath: "src/skills/literature-review"
|
|
35
24
|
},
|
|
36
25
|
{
|
|
37
26
|
name: "hypothesis-generation",
|
|
38
|
-
|
|
39
|
-
skillName: "hypothesis-generation",
|
|
27
|
+
description: "Gap-driven hypothesis generation workflow",
|
|
40
28
|
allowedAgents: ["orchestrator", "synthesizer"],
|
|
41
|
-
|
|
29
|
+
sourcePath: "src/skills/hypothesis-generation"
|
|
42
30
|
},
|
|
43
31
|
{
|
|
44
32
|
name: "idea-critique",
|
|
45
|
-
|
|
46
|
-
skillName: "idea-critique",
|
|
33
|
+
description: "Multi-round adversarial idea review workflow",
|
|
47
34
|
allowedAgents: ["orchestrator", "critic"],
|
|
48
|
-
|
|
35
|
+
sourcePath: "src/skills/idea-critique"
|
|
49
36
|
},
|
|
50
37
|
{
|
|
51
38
|
name: "experiment-design",
|
|
52
|
-
|
|
53
|
-
skillName: "experiment-design",
|
|
39
|
+
description: "Experimental plan design workflow",
|
|
54
40
|
allowedAgents: ["orchestrator", "architect"],
|
|
55
|
-
|
|
41
|
+
sourcePath: "src/skills/experiment-design"
|
|
56
42
|
},
|
|
57
43
|
{
|
|
58
44
|
name: "paper-outline",
|
|
59
|
-
|
|
60
|
-
skillName: "paper-outline",
|
|
45
|
+
description: "Paper outline generation workflow",
|
|
61
46
|
allowedAgents: ["orchestrator", "writer"],
|
|
62
|
-
|
|
47
|
+
sourcePath: "src/skills/paper-outline"
|
|
48
|
+
}
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
// src/cli/skills.ts
|
|
52
|
+
var RECOMMENDED_SKILLS = [
|
|
53
|
+
{
|
|
54
|
+
name: "simplify",
|
|
55
|
+
repo: "https://github.com/brianlovin/claude-config",
|
|
56
|
+
skillName: "simplify",
|
|
57
|
+
allowedAgents: ["orchestrator"],
|
|
58
|
+
description: "YAGNI code simplification expert"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "agent-browser",
|
|
62
|
+
repo: "https://github.com/vercel-labs/agent-browser",
|
|
63
|
+
skillName: "agent-browser",
|
|
64
|
+
allowedAgents: ["designer"],
|
|
65
|
+
description: "High-performance browser automation",
|
|
66
|
+
postInstallCommands: [
|
|
67
|
+
"npm install -g agent-browser",
|
|
68
|
+
"agent-browser install"
|
|
69
|
+
]
|
|
63
70
|
}
|
|
64
71
|
];
|
|
65
72
|
var PERMISSION_ONLY_SKILLS = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-openidea",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Multi-agent framework for CS/ML research idea generation — literature survey, hypothesis generation, novelty checking, methodology design, and paper outlining",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|