@northbridge-security/secureai 0.1.13
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/.claude/README.md +122 -0
- package/.claude/commands/architect/clean.md +978 -0
- package/.claude/commands/architect/kiss.md +762 -0
- package/.claude/commands/architect/review.md +704 -0
- package/.claude/commands/catchup.md +90 -0
- package/.claude/commands/code.md +115 -0
- package/.claude/commands/commit.md +1218 -0
- package/.claude/commands/cover.md +1298 -0
- package/.claude/commands/fmea.md +275 -0
- package/.claude/commands/kaizen.md +312 -0
- package/.claude/commands/pr.md +503 -0
- package/.claude/commands/todo.md +99 -0
- package/.claude/commands/worktree.md +738 -0
- package/.claude/commands/wrapup.md +103 -0
- package/LICENSE +183 -0
- package/README.md +108 -0
- package/dist/cli.js +75634 -0
- package/docs/agents/devops-reviewer.md +889 -0
- package/docs/agents/kiss-simplifier.md +1088 -0
- package/docs/agents/typescript.md +8 -0
- package/docs/guides/README.md +109 -0
- package/docs/guides/agents.clean.arch.md +244 -0
- package/docs/guides/agents.clean.arch.ts.md +1314 -0
- package/docs/guides/agents.gotask.md +1037 -0
- package/docs/guides/agents.markdown.md +1209 -0
- package/docs/guides/agents.onepassword.md +285 -0
- package/docs/guides/agents.sonar.md +857 -0
- package/docs/guides/agents.tdd.md +838 -0
- package/docs/guides/agents.tdd.ts.md +1062 -0
- package/docs/guides/agents.typesript.md +1389 -0
- package/docs/guides/github-mcp.md +1075 -0
- package/package.json +130 -0
- package/packages/secureai-cli/src/cli.ts +21 -0
- package/tasks/README.md +880 -0
- package/tasks/aws.yml +64 -0
- package/tasks/bash.yml +118 -0
- package/tasks/bun.yml +738 -0
- package/tasks/claude.yml +183 -0
- package/tasks/docker.yml +420 -0
- package/tasks/docs.yml +127 -0
- package/tasks/git.yml +1336 -0
- package/tasks/gotask.yml +132 -0
- package/tasks/json.yml +77 -0
- package/tasks/markdown.yml +95 -0
- package/tasks/onepassword.yml +350 -0
- package/tasks/security.yml +102 -0
- package/tasks/sonar.yml +437 -0
- package/tasks/template.yml +74 -0
- package/tasks/vscode.yml +103 -0
- package/tasks/yaml.yml +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Northbridge Security",
|
|
3
|
+
"bin": {
|
|
4
|
+
"ai-toolkit": "./packages/secureai-cli/src/cli.ts"
|
|
5
|
+
},
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/northbridge-security/ai-toolkit/issues"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"chalk": "^5.3.0",
|
|
11
|
+
"commander": "^11.0.0",
|
|
12
|
+
"ignore": "^5.3.0",
|
|
13
|
+
"inquirer": "^9.2.0",
|
|
14
|
+
"js-yaml": "^4.1.1",
|
|
15
|
+
"minimatch": "^10.1.1",
|
|
16
|
+
"pino": "^10.1.0",
|
|
17
|
+
"pino-pretty": "^13.1.2",
|
|
18
|
+
"semver": "^7.5.0",
|
|
19
|
+
"sudo-prompt": "^9.2.1",
|
|
20
|
+
"winston": "^3.11.0",
|
|
21
|
+
"zod": "^4.1.0"
|
|
22
|
+
},
|
|
23
|
+
"description": "One-command installer for AI development tools with MCP integration",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@biomejs/biome": "^2.3.8",
|
|
26
|
+
"@eslint/js": "^9.0.0",
|
|
27
|
+
"@types/bun": "^1.3.3",
|
|
28
|
+
"@types/inquirer": "^9.0.9",
|
|
29
|
+
"@types/minimatch": "^6.0.0",
|
|
30
|
+
"@types/node": "^20.0.0",
|
|
31
|
+
"@types/semver": "^7.7.1",
|
|
32
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
33
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
34
|
+
"bun-types": "^1.0.0",
|
|
35
|
+
"eslint": "^9.0.0",
|
|
36
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
37
|
+
"eslint-plugin-headers": "^1.1.2",
|
|
38
|
+
"eslint-plugin-import": "^2.29.0",
|
|
39
|
+
"eslint-plugin-jsdoc": "^50.0.0",
|
|
40
|
+
"eslint-plugin-perfectionist": "^3.0.0",
|
|
41
|
+
"eslint-plugin-prettier": "^5.2.0",
|
|
42
|
+
"husky": "^9.1.7",
|
|
43
|
+
"prettier": "^3.3.0",
|
|
44
|
+
"turbo": "^2.6.3",
|
|
45
|
+
"typedoc": "^0.28.14",
|
|
46
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
47
|
+
"typescript": "^5.0.0"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"bun": ">=1.3.2",
|
|
51
|
+
"node": ">=18.0.0"
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"dist",
|
|
55
|
+
"docs/agents/**/*.md",
|
|
56
|
+
".claude/commands/**/*.md",
|
|
57
|
+
"docs/guides/**/*.md",
|
|
58
|
+
"tasks/**/*.yml",
|
|
59
|
+
"templates/**",
|
|
60
|
+
"README.md",
|
|
61
|
+
"LICENSE"
|
|
62
|
+
],
|
|
63
|
+
"homepage": "https://github.com/northbridge-security/ai-toolkit#readme",
|
|
64
|
+
"keywords": [
|
|
65
|
+
"ai",
|
|
66
|
+
"ai-tools",
|
|
67
|
+
"mcp",
|
|
68
|
+
"model-context-protocol",
|
|
69
|
+
"claude",
|
|
70
|
+
"claude-code",
|
|
71
|
+
"cursor",
|
|
72
|
+
"cursor-ide",
|
|
73
|
+
"copilot",
|
|
74
|
+
"github-copilot",
|
|
75
|
+
"codex",
|
|
76
|
+
"openai",
|
|
77
|
+
"developer-tools",
|
|
78
|
+
"development-tools",
|
|
79
|
+
"installer",
|
|
80
|
+
"cli",
|
|
81
|
+
"automation",
|
|
82
|
+
"1password",
|
|
83
|
+
"secrets-management"
|
|
84
|
+
],
|
|
85
|
+
"license": "UNLICENSED",
|
|
86
|
+
"main": "dist/index.js",
|
|
87
|
+
"name": "@northbridge-security/secureai",
|
|
88
|
+
"packageManager": "bun@1.3.2",
|
|
89
|
+
"publishConfig": {
|
|
90
|
+
"access": "public",
|
|
91
|
+
"registry": "https://registry.npmjs.org"
|
|
92
|
+
},
|
|
93
|
+
"repository": {
|
|
94
|
+
"type": "git",
|
|
95
|
+
"url": "https://github.com/northbridge-security/ai-toolkit.git"
|
|
96
|
+
},
|
|
97
|
+
"scripts": {
|
|
98
|
+
"build": "bun build packages/secureai-cli/src/cli.ts --outfile dist/cli.js --target node && chmod +x dist/cli.js",
|
|
99
|
+
"check-coverage": "bun run packages/secureai-cli/src/cli.ts check-coverage",
|
|
100
|
+
"dev": "bun run packages/secureai-cli/src/cli.ts",
|
|
101
|
+
"docs:clean": "rm -rf docs/api",
|
|
102
|
+
"docs:generate": "typedoc",
|
|
103
|
+
"docs:watch": "typedoc --watch",
|
|
104
|
+
"fix": "bun run format && bun run lint:fix",
|
|
105
|
+
"format": "prettier --write --log-level=warn .",
|
|
106
|
+
"format:check": "prettier --check .",
|
|
107
|
+
"lint": "eslint .",
|
|
108
|
+
"lint:biome": "biome check .",
|
|
109
|
+
"lint:biome:fix": "biome check --write .",
|
|
110
|
+
"lint:fix": "eslint --fix .",
|
|
111
|
+
"postinstall": "echo 'Dependencies installed'",
|
|
112
|
+
"prepare": "husky",
|
|
113
|
+
"pretest": "mkdir -p .logs/test-results .logs/coverage",
|
|
114
|
+
"security:scan": "bun run packages/secureai-cli/src/cli.ts security-scan",
|
|
115
|
+
"security:scan:skip-semgrep": "SKIP_SEMGREP=1 bun run packages/secureai-cli/src/cli.ts security-scan",
|
|
116
|
+
"setup": "./tasks/setup.local.sh",
|
|
117
|
+
"test": "FULL_TEST_RUN=true bun test ${FILES:-packages/secureai-cli/tests packages/secureai-core/tests}",
|
|
118
|
+
"test:coverage": "bun test ${FILES:-packages/secureai-cli/tests packages/secureai-core/tests} --coverage",
|
|
119
|
+
"test:integration": "bun test tests/integration",
|
|
120
|
+
"turbo:lint": "turbo run lint typecheck",
|
|
121
|
+
"turbo:test": "turbo run test",
|
|
122
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p packages/secureai-core/tsconfig.json && tsc --noEmit -p packages/secureai-cli/tsconfig.json",
|
|
123
|
+
"validate-commit": "bun run packages/secureai-cli/src/cli.ts validate-commit"
|
|
124
|
+
},
|
|
125
|
+
"type": "module",
|
|
126
|
+
"version": "0.1.13",
|
|
127
|
+
"workspaces": [
|
|
128
|
+
"packages/*"
|
|
129
|
+
]
|
|
130
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env bun
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2024-2025 Northbridge Security AB
|
|
4
|
+
* All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* This source code is licensed under the license found in the
|
|
7
|
+
* LICENSE file in the root directory of this source tree.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* CLI entry point for npx execution
|
|
12
|
+
* Usage: npx @northbridge-security/ai-toolkit install --interactive
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { runCLI } from "./cli/index.js";
|
|
16
|
+
|
|
17
|
+
// Run the CLI with process arguments
|
|
18
|
+
runCLI(process.argv).catch((error) => {
|
|
19
|
+
console.error("Fatal error:", error);
|
|
20
|
+
process.exit(1);
|
|
21
|
+
});
|