@oomerevren/tryforge 0.1.2
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/CHANGELOG.md +25 -0
- package/LICENSE +21 -0
- package/README.md +361 -0
- package/dist/cli/src/adapters/claude.js +31 -0
- package/dist/cli/src/adapters/codex.js +30 -0
- package/dist/cli/src/adapters/cursor.js +42 -0
- package/dist/cli/src/adapters/dsh.js +46 -0
- package/dist/cli/src/adapters/generic.js +23 -0
- package/dist/cli/src/adapters/index.js +30 -0
- package/dist/cli/src/adapters/opencode.js +41 -0
- package/dist/cli/src/adapters/types.js +140 -0
- package/dist/cli/src/adapters/windsurf.js +43 -0
- package/dist/cli/src/commands/audit.js +62 -0
- package/dist/cli/src/commands/init.js +104 -0
- package/dist/cli/src/commands/install.js +212 -0
- package/dist/cli/src/commands/update.js +119 -0
- package/dist/cli/src/core/config.js +47 -0
- package/dist/cli/src/core/installer.js +279 -0
- package/dist/cli/src/core/lock.js +41 -0
- package/dist/cli/src/core/permissions.js +29 -0
- package/dist/cli/src/core/plugin.js +34 -0
- package/dist/cli/src/core/project.js +60 -0
- package/dist/cli/src/core/registry.js +137 -0
- package/dist/cli/src/core/semver.js +162 -0
- package/dist/cli/src/core/sign.js +92 -0
- package/dist/cli/src/core/store.js +71 -0
- package/dist/cli/src/index.js +484 -0
- package/dist/scripts/build-registry.js +145 -0
- package/dist/scripts/publish-verified.js +82 -0
- package/dist/scripts/seed-registry-13lite.js +208 -0
- package/dist/scripts/seed-registry.js +144 -0
- package/dist/scripts/verify-npm-mcps.js +60 -0
- package/forge.toml +18 -0
- package/install.ps1 +59 -0
- package/install.sh +81 -0
- package/package.json +64 -0
- package/registry/index.json +336 -0
- package/registry/packages/agent-changelog-writer.json +27 -0
- package/registry/packages/agent-debugger.json +27 -0
- package/registry/packages/agent-pr-reviewer.json +27 -0
- package/registry/packages/agent-researcher.json +27 -0
- package/registry/packages/agent-security-auditor.json +27 -0
- package/registry/packages/cmd-plan.json +26 -0
- package/registry/packages/cmd-review.json +26 -0
- package/registry/packages/mcp-filesystem.json +34 -0
- package/registry/packages/mcp-github.json +33 -0
- package/registry/packages/mcp-memory.json +33 -0
- package/registry/packages/mcp-postgres.json +34 -0
- package/registry/packages/mcp-sequential-thinking.json +33 -0
- package/registry/packages/obra-superpowers.json +29 -0
- package/registry/packages/pdf-compress.json +27 -0
- package/registry/packages/pdf-convert.json +27 -0
- package/registry/packages/pdf-extract.json +27 -0
- package/registry/packages/pdf-forms.json +27 -0
- package/registry/packages/pdf-merge.json +27 -0
- package/registry/packages/pdf-ocr.json +27 -0
- package/registry/packages/pdf-split.json +27 -0
- package/registry/packages/pdf-tables.json +27 -0
- package/registry/search.json +248 -0
- package/registry/stats.json +13 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp/filesystem",
|
|
3
|
+
"type": "mcp",
|
|
4
|
+
"description": "Filesystem MCP server — read/write files securely",
|
|
5
|
+
"homepage": "https://github.com/modelcontextprotocol/servers",
|
|
6
|
+
"repository": "https://www.npmjs.com/package/@modelcontextprotocol/server-filesystem",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"filesystem"
|
|
10
|
+
],
|
|
11
|
+
"source": "src/filesystem",
|
|
12
|
+
"versions": {
|
|
13
|
+
"2026.8.31": {
|
|
14
|
+
"version": "2026.8.31",
|
|
15
|
+
"tarball": "https://registry.npmjs.org/@modelcontextprotocol/server-filesystem/-/server-filesystem-2026.8.31.tgz",
|
|
16
|
+
"sha256": "a239da270c403c42eb03e1ca7cca07c858085819797b74856ddbb91b50491b1a",
|
|
17
|
+
"verified": true,
|
|
18
|
+
"engines": {
|
|
19
|
+
"*": "*"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {},
|
|
22
|
+
"mcp": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": [
|
|
25
|
+
"-y",
|
|
26
|
+
"@modelcontextprotocol/server-filesystem",
|
|
27
|
+
"/tmp"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"publishedAt": "2026-08-31T20:25:55.419Z"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"latest": "2026.8.31"
|
|
34
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp/github",
|
|
3
|
+
"type": "mcp",
|
|
4
|
+
"description": "GitHub MCP server — issues, PRs, repos",
|
|
5
|
+
"homepage": "https://github.com/mcp/github",
|
|
6
|
+
"repository": "https://www.npmjs.com/package/@modelcontextprotocol/server-github",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"github"
|
|
10
|
+
],
|
|
11
|
+
"source": "src/github",
|
|
12
|
+
"versions": {
|
|
13
|
+
"2025.4.8": {
|
|
14
|
+
"version": "2025.4.8",
|
|
15
|
+
"tarball": "https://registry.npmjs.org/@modelcontextprotocol/server-github/-/server-github-2025.4.8.tgz",
|
|
16
|
+
"sha256": "1d5b1bca9305adf0c8055131f2286514c9bea6eb31100460899a1ed9ffece5c1",
|
|
17
|
+
"verified": true,
|
|
18
|
+
"engines": {
|
|
19
|
+
"*": "*"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {},
|
|
22
|
+
"mcp": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": [
|
|
25
|
+
"-y",
|
|
26
|
+
"@modelcontextprotocol/server-github"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"publishedAt": "2025-04-08T10:08:59.978Z"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"latest": "2025.4.8"
|
|
33
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp/memory",
|
|
3
|
+
"type": "mcp",
|
|
4
|
+
"description": "Memory MCP server — knowledge graph memory",
|
|
5
|
+
"homepage": "https://github.com/mcp/memory",
|
|
6
|
+
"repository": "https://www.npmjs.com/package/@modelcontextprotocol/server-memory",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"memory"
|
|
10
|
+
],
|
|
11
|
+
"source": "src/memory",
|
|
12
|
+
"versions": {
|
|
13
|
+
"2026.8.31": {
|
|
14
|
+
"version": "2026.8.31",
|
|
15
|
+
"tarball": "https://registry.npmjs.org/@modelcontextprotocol/server-memory/-/server-memory-2026.8.31.tgz",
|
|
16
|
+
"sha256": "53a606a0e2d8622214808c85e9986db08ff343520d95b64d386039d024eb504c",
|
|
17
|
+
"verified": true,
|
|
18
|
+
"engines": {
|
|
19
|
+
"*": "*"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {},
|
|
22
|
+
"mcp": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": [
|
|
25
|
+
"-y",
|
|
26
|
+
"@modelcontextprotocol/server-memory"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"publishedAt": "2026-08-31T20:23:48.078Z"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"latest": "2026.8.31"
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp/postgres",
|
|
3
|
+
"type": "mcp",
|
|
4
|
+
"description": "Postgres MCP server — SQL database access",
|
|
5
|
+
"homepage": "https://github.com/mcp/postgres",
|
|
6
|
+
"repository": "https://www.npmjs.com/package/@modelcontextprotocol/server-postgres",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"postgres",
|
|
10
|
+
"sql"
|
|
11
|
+
],
|
|
12
|
+
"source": "src/postgres",
|
|
13
|
+
"versions": {
|
|
14
|
+
"0.6.2": {
|
|
15
|
+
"version": "0.6.2",
|
|
16
|
+
"tarball": "https://registry.npmjs.org/@modelcontextprotocol/server-postgres/-/server-postgres-0.6.2.tgz",
|
|
17
|
+
"sha256": "af55200a01b13ae31949fb4a8864ee6043b891d00ff83330d1779b18aa5ba26f",
|
|
18
|
+
"verified": true,
|
|
19
|
+
"engines": {
|
|
20
|
+
"*": "*"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"mcp": {
|
|
24
|
+
"command": "npx",
|
|
25
|
+
"args": [
|
|
26
|
+
"-y",
|
|
27
|
+
"@modelcontextprotocol/server-postgres"
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"publishedAt": "2024-12-04T16:14:51.820Z"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"latest": "0.6.2"
|
|
34
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp/sequential-thinking",
|
|
3
|
+
"type": "mcp",
|
|
4
|
+
"description": "Sequential thinking MCP — structured reasoning",
|
|
5
|
+
"homepage": "https://github.com/mcp/sequential-thinking",
|
|
6
|
+
"repository": "https://www.npmjs.com/package/@modelcontextprotocol/server-sequential-thinking",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"mcp",
|
|
9
|
+
"reasoning"
|
|
10
|
+
],
|
|
11
|
+
"source": "src/sequential-thinking",
|
|
12
|
+
"versions": {
|
|
13
|
+
"2026.8.31": {
|
|
14
|
+
"version": "2026.8.31",
|
|
15
|
+
"tarball": "https://registry.npmjs.org/@modelcontextprotocol/server-sequential-thinking/-/server-sequential-thinking-2026.8.31.tgz",
|
|
16
|
+
"sha256": "b47c367af4bc1ef96cec096e67151899a29317c42009f0ac53a0d51b85c2c71d",
|
|
17
|
+
"verified": true,
|
|
18
|
+
"engines": {
|
|
19
|
+
"*": "*"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {},
|
|
22
|
+
"mcp": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": [
|
|
25
|
+
"-y",
|
|
26
|
+
"@modelcontextprotocol/server-sequential-thinking"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"publishedAt": "2026-08-31T20:23:44.857Z"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"latest": "2026.8.31"
|
|
33
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "obra/superpowers",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "An agentic skills framework & development methodology",
|
|
5
|
+
"homepage": "https://github.com/obra/superpowers",
|
|
6
|
+
"repository": "https://github.com/obra/superpowers",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"skills",
|
|
9
|
+
"workflow",
|
|
10
|
+
"brainstorming"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"3.0.0": {
|
|
14
|
+
"version": "3.0.0",
|
|
15
|
+
"tarball": "https://github.com/obra/superpowers/archive/b36e0829c6d0140e93cfef2ca599b1b07d4a7797.tar.gz",
|
|
16
|
+
"sha256": "7c3ae7db406f8d92cf55329aa9e9a41e53f6cef00bdb68e1325713be97ef5d7c",
|
|
17
|
+
"engines": {
|
|
18
|
+
"claude-code": "*",
|
|
19
|
+
"opencode": "*",
|
|
20
|
+
"codex": "*"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"publishedAt": "2026-08-29T12:00:00Z",
|
|
24
|
+
"verified": true,
|
|
25
|
+
"sourceRef": "b36e0829c6d0140e93cfef2ca599b1b07d4a7797"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"latest": "3.0.0"
|
|
29
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/compress",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF compress skill \u2014 shrink PDF size without quality loss",
|
|
5
|
+
"homepage": "https://github.com/pdf/compress",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"compress",
|
|
10
|
+
"optimize"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-compress-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "f843a4523af3cae7b170389e3680d39e37a22e68c8826844e140279c3f23ce66",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.948Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/convert",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF convert skill \u2014 PDF to Word, HTML, Markdown and back",
|
|
5
|
+
"homepage": "https://github.com/pdf/convert",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"convert",
|
|
10
|
+
"export"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-convert-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "e9ad296850f60c30ae0b2485bf5c9bb582f96677dead1d769a7cdea182a8cea0",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.951Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/extract",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF extract skill \u2014 pull text, tables and images from PDFs",
|
|
5
|
+
"homepage": "https://github.com/pdf/extract",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"extract",
|
|
10
|
+
"parse"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-extract-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "30326bd7f38fcda2ead1216c275ea7010d2e9ff4a5bf75c68f9c8ca4cf8153f8",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.949Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/forms",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF forms skill \u2014 fill and extract AcroForm form data",
|
|
5
|
+
"homepage": "https://github.com/pdf/forms",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"forms",
|
|
10
|
+
"acroform"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-forms-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "1cd26c0b22c21e67ce29a698ac3403e10c659078b40756e98799f3e650ce8324",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.949Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/merge",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF merge skill \u2014 combine multiple PDFs into one document fast",
|
|
5
|
+
"homepage": "https://github.com/pdf/merge",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"merge",
|
|
10
|
+
"document"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-merge-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "5e84a081c5c343973af044b4076da2492ee109973a3fb7793a4673dcf094caeb",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.945Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/ocr",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF OCR skill \u2014 scanned PDFs to searchable text with OCR",
|
|
5
|
+
"homepage": "https://github.com/pdf/ocr",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"ocr",
|
|
10
|
+
"scan"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-ocr-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "fcef2fc223d63a6169493390014bc21b66134b3a266d3c25e71d2f1db8275532",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.947Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/split",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF split skill \u2014 extract pages and split PDFs by range",
|
|
5
|
+
"homepage": "https://github.com/pdf/split",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"split",
|
|
10
|
+
"pages"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-split-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "dc409d49d4cb6628bad015c92887794cad4fc766edd2c0b1d0a0c16c7727f2e2",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.946Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pdf/tables",
|
|
3
|
+
"type": "skill",
|
|
4
|
+
"description": "PDF tables skill \u2014 detect and export tables from PDFs to CSV",
|
|
5
|
+
"homepage": "https://github.com/pdf/tables",
|
|
6
|
+
"repository": "https://github.com/oomerevren-beep/forge",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pdf",
|
|
9
|
+
"tables",
|
|
10
|
+
"csv"
|
|
11
|
+
],
|
|
12
|
+
"versions": {
|
|
13
|
+
"1.0.0": {
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"tarball": "https://github.com/oomerevren-beep/forge/releases/download/registry-v1/pdf-tables-1.0.0.tar.gz",
|
|
16
|
+
"sha256": "5e089712394b2a3cdeaae9682e82c369f2c973aa2a4cd6304ff3cdad06100d6b",
|
|
17
|
+
"engines": {
|
|
18
|
+
"*": "*"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"publishedAt": "2026-09-03T11:17:11.952Z",
|
|
22
|
+
"verified": true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"latest": "1.0.0",
|
|
26
|
+
"verified": true
|
|
27
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "agent/changelog-writer",
|
|
4
|
+
"type": "agent",
|
|
5
|
+
"description": "Changelog writer agent — generate release notes from commits",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"agent",
|
|
8
|
+
"changelog",
|
|
9
|
+
"release"
|
|
10
|
+
],
|
|
11
|
+
"latest": "1.0.0",
|
|
12
|
+
"verified": true
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "agent/debugger",
|
|
16
|
+
"type": "agent",
|
|
17
|
+
"description": "Debugger agent — reproduce and root-cause failures step by step",
|
|
18
|
+
"keywords": [
|
|
19
|
+
"agent",
|
|
20
|
+
"debug",
|
|
21
|
+
"triage"
|
|
22
|
+
],
|
|
23
|
+
"latest": "1.0.0",
|
|
24
|
+
"verified": true
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "agent/pr-reviewer",
|
|
28
|
+
"type": "agent",
|
|
29
|
+
"description": "PR reviewer agent — thorough pull request reviews with suggestions",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"agent",
|
|
32
|
+
"review",
|
|
33
|
+
"pr"
|
|
34
|
+
],
|
|
35
|
+
"latest": "1.0.0",
|
|
36
|
+
"verified": true
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "agent/researcher",
|
|
40
|
+
"type": "agent",
|
|
41
|
+
"description": "Researcher agent — deep web research with cited summaries",
|
|
42
|
+
"keywords": [
|
|
43
|
+
"agent",
|
|
44
|
+
"research",
|
|
45
|
+
"web"
|
|
46
|
+
],
|
|
47
|
+
"latest": "1.0.0",
|
|
48
|
+
"verified": true
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "agent/security-auditor",
|
|
52
|
+
"type": "agent",
|
|
53
|
+
"description": "Security auditor agent — scan code for vulns and hardening tips",
|
|
54
|
+
"keywords": [
|
|
55
|
+
"agent",
|
|
56
|
+
"security",
|
|
57
|
+
"audit"
|
|
58
|
+
],
|
|
59
|
+
"latest": "1.0.0",
|
|
60
|
+
"verified": true
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "cmd/plan",
|
|
64
|
+
"type": "command",
|
|
65
|
+
"description": "Slash command /plan — structured planning",
|
|
66
|
+
"keywords": [
|
|
67
|
+
"command",
|
|
68
|
+
"plan"
|
|
69
|
+
],
|
|
70
|
+
"latest": "1.0.0",
|
|
71
|
+
"verified": true
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "cmd/review",
|
|
75
|
+
"type": "command",
|
|
76
|
+
"description": "Slash command /review — code review",
|
|
77
|
+
"keywords": [
|
|
78
|
+
"command",
|
|
79
|
+
"review"
|
|
80
|
+
],
|
|
81
|
+
"latest": "1.0.0",
|
|
82
|
+
"verified": true
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "mcp/filesystem",
|
|
86
|
+
"type": "mcp",
|
|
87
|
+
"description": "Filesystem MCP server — read/write files securely",
|
|
88
|
+
"keywords": [
|
|
89
|
+
"mcp",
|
|
90
|
+
"filesystem"
|
|
91
|
+
],
|
|
92
|
+
"latest": "2026.8.31",
|
|
93
|
+
"verified": true
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "mcp/github",
|
|
97
|
+
"type": "mcp",
|
|
98
|
+
"description": "GitHub MCP server — issues, PRs, repos",
|
|
99
|
+
"keywords": [
|
|
100
|
+
"mcp",
|
|
101
|
+
"github"
|
|
102
|
+
],
|
|
103
|
+
"latest": "2025.4.8",
|
|
104
|
+
"verified": true
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "mcp/memory",
|
|
108
|
+
"type": "mcp",
|
|
109
|
+
"description": "Memory MCP server — knowledge graph memory",
|
|
110
|
+
"keywords": [
|
|
111
|
+
"mcp",
|
|
112
|
+
"memory"
|
|
113
|
+
],
|
|
114
|
+
"latest": "2026.8.31",
|
|
115
|
+
"verified": true
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "mcp/postgres",
|
|
119
|
+
"type": "mcp",
|
|
120
|
+
"description": "Postgres MCP server — SQL database access",
|
|
121
|
+
"keywords": [
|
|
122
|
+
"mcp",
|
|
123
|
+
"postgres",
|
|
124
|
+
"sql"
|
|
125
|
+
],
|
|
126
|
+
"latest": "0.6.2",
|
|
127
|
+
"verified": true
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "mcp/sequential-thinking",
|
|
131
|
+
"type": "mcp",
|
|
132
|
+
"description": "Sequential thinking MCP — structured reasoning",
|
|
133
|
+
"keywords": [
|
|
134
|
+
"mcp",
|
|
135
|
+
"reasoning"
|
|
136
|
+
],
|
|
137
|
+
"latest": "2026.8.31",
|
|
138
|
+
"verified": true
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "obra/superpowers",
|
|
142
|
+
"type": "skill",
|
|
143
|
+
"description": "An agentic skills framework & development methodology",
|
|
144
|
+
"keywords": [
|
|
145
|
+
"skills",
|
|
146
|
+
"workflow",
|
|
147
|
+
"brainstorming"
|
|
148
|
+
],
|
|
149
|
+
"latest": "3.0.0",
|
|
150
|
+
"verified": true
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "pdf/compress",
|
|
154
|
+
"type": "skill",
|
|
155
|
+
"description": "PDF compress skill — shrink PDF size without quality loss",
|
|
156
|
+
"keywords": [
|
|
157
|
+
"pdf",
|
|
158
|
+
"compress",
|
|
159
|
+
"optimize"
|
|
160
|
+
],
|
|
161
|
+
"latest": "1.0.0",
|
|
162
|
+
"verified": true
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "pdf/convert",
|
|
166
|
+
"type": "skill",
|
|
167
|
+
"description": "PDF convert skill — PDF to Word, HTML, Markdown and back",
|
|
168
|
+
"keywords": [
|
|
169
|
+
"pdf",
|
|
170
|
+
"convert",
|
|
171
|
+
"export"
|
|
172
|
+
],
|
|
173
|
+
"latest": "1.0.0",
|
|
174
|
+
"verified": true
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "pdf/extract",
|
|
178
|
+
"type": "skill",
|
|
179
|
+
"description": "PDF extract skill — pull text, tables and images from PDFs",
|
|
180
|
+
"keywords": [
|
|
181
|
+
"pdf",
|
|
182
|
+
"extract",
|
|
183
|
+
"parse"
|
|
184
|
+
],
|
|
185
|
+
"latest": "1.0.0",
|
|
186
|
+
"verified": true
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"name": "pdf/forms",
|
|
190
|
+
"type": "skill",
|
|
191
|
+
"description": "PDF forms skill — fill and extract AcroForm form data",
|
|
192
|
+
"keywords": [
|
|
193
|
+
"pdf",
|
|
194
|
+
"forms",
|
|
195
|
+
"acroform"
|
|
196
|
+
],
|
|
197
|
+
"latest": "1.0.0",
|
|
198
|
+
"verified": true
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "pdf/merge",
|
|
202
|
+
"type": "skill",
|
|
203
|
+
"description": "PDF merge skill — combine multiple PDFs into one document fast",
|
|
204
|
+
"keywords": [
|
|
205
|
+
"pdf",
|
|
206
|
+
"merge",
|
|
207
|
+
"document"
|
|
208
|
+
],
|
|
209
|
+
"latest": "1.0.0",
|
|
210
|
+
"verified": true
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "pdf/ocr",
|
|
214
|
+
"type": "skill",
|
|
215
|
+
"description": "PDF OCR skill — scanned PDFs to searchable text with OCR",
|
|
216
|
+
"keywords": [
|
|
217
|
+
"pdf",
|
|
218
|
+
"ocr",
|
|
219
|
+
"scan"
|
|
220
|
+
],
|
|
221
|
+
"latest": "1.0.0",
|
|
222
|
+
"verified": true
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "pdf/split",
|
|
226
|
+
"type": "skill",
|
|
227
|
+
"description": "PDF split skill — extract pages and split PDFs by range",
|
|
228
|
+
"keywords": [
|
|
229
|
+
"pdf",
|
|
230
|
+
"split",
|
|
231
|
+
"pages"
|
|
232
|
+
],
|
|
233
|
+
"latest": "1.0.0",
|
|
234
|
+
"verified": true
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "pdf/tables",
|
|
238
|
+
"type": "skill",
|
|
239
|
+
"description": "PDF tables skill — detect and export tables from PDFs to CSV",
|
|
240
|
+
"keywords": [
|
|
241
|
+
"pdf",
|
|
242
|
+
"tables",
|
|
243
|
+
"csv"
|
|
244
|
+
],
|
|
245
|
+
"latest": "1.0.0",
|
|
246
|
+
"verified": true
|
|
247
|
+
}
|
|
248
|
+
]
|