@qazuor/claude-code-config 0.1.0 → 0.2.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/README.md +70 -16
- package/dist/bin.cjs +1434 -635
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1413 -614
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +195 -425
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +195 -425
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/CLAUDE.md.template +108 -0
package/dist/index.d.cts
CHANGED
|
@@ -50,8 +50,9 @@ interface FolderPreferences {
|
|
|
50
50
|
*/
|
|
51
51
|
/**
|
|
52
52
|
* MCP server categories
|
|
53
|
+
* Only includes categories with verified npm packages
|
|
53
54
|
*/
|
|
54
|
-
type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | '
|
|
55
|
+
type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'monitoring' | 'testing' | 'communication' | 'payments' | 'search' | 'project-mgmt' | 'design' | 'ui-library' | 'ai' | 'custom';
|
|
55
56
|
/**
|
|
56
57
|
* Configuration field for MCP servers that require setup
|
|
57
58
|
*/
|
|
@@ -405,6 +406,8 @@ interface ProjectInfo {
|
|
|
405
406
|
entityTypePlural: string;
|
|
406
407
|
/** Location for examples (optional) */
|
|
407
408
|
location?: string;
|
|
409
|
+
/** Author name or full author string (optional) */
|
|
410
|
+
author?: string;
|
|
408
411
|
}
|
|
409
412
|
/**
|
|
410
413
|
* User preferences
|
|
@@ -972,10 +975,11 @@ declare function getBundleById(id: string): BundleDefinition | undefined;
|
|
|
972
975
|
|
|
973
976
|
/**
|
|
974
977
|
* MCP Server definitions
|
|
978
|
+
* Only includes verified, real npm packages
|
|
975
979
|
*/
|
|
976
980
|
|
|
977
981
|
/**
|
|
978
|
-
* Available MCP servers
|
|
982
|
+
* Available MCP servers - all packages verified to exist on npm
|
|
979
983
|
*/
|
|
980
984
|
declare const MCP_SERVERS: McpServerDefinition[];
|
|
981
985
|
|
package/dist/index.d.ts
CHANGED
|
@@ -50,8 +50,9 @@ interface FolderPreferences {
|
|
|
50
50
|
*/
|
|
51
51
|
/**
|
|
52
52
|
* MCP server categories
|
|
53
|
+
* Only includes categories with verified npm packages
|
|
53
54
|
*/
|
|
54
|
-
type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | '
|
|
55
|
+
type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'monitoring' | 'testing' | 'communication' | 'payments' | 'search' | 'project-mgmt' | 'design' | 'ui-library' | 'ai' | 'custom';
|
|
55
56
|
/**
|
|
56
57
|
* Configuration field for MCP servers that require setup
|
|
57
58
|
*/
|
|
@@ -405,6 +406,8 @@ interface ProjectInfo {
|
|
|
405
406
|
entityTypePlural: string;
|
|
406
407
|
/** Location for examples (optional) */
|
|
407
408
|
location?: string;
|
|
409
|
+
/** Author name or full author string (optional) */
|
|
410
|
+
author?: string;
|
|
408
411
|
}
|
|
409
412
|
/**
|
|
410
413
|
* User preferences
|
|
@@ -972,10 +975,11 @@ declare function getBundleById(id: string): BundleDefinition | undefined;
|
|
|
972
975
|
|
|
973
976
|
/**
|
|
974
977
|
* MCP Server definitions
|
|
978
|
+
* Only includes verified, real npm packages
|
|
975
979
|
*/
|
|
976
980
|
|
|
977
981
|
/**
|
|
978
|
-
* Available MCP servers
|
|
982
|
+
* Available MCP servers - all packages verified to exist on npm
|
|
979
983
|
*/
|
|
980
984
|
declare const MCP_SERVERS: McpServerDefinition[];
|
|
981
985
|
|