@aicgen/aicgen 1.1.0 → 1.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/.agents/plugins/marketplace.json +20 -0
- package/.codex/hooks/aicgen_session_start.py +16 -0
- package/.codex/hooks.json +25 -0
- package/.codex/instructions.md +8165 -0
- package/.gitmodules +2 -1
- package/AGENTS.md +43 -11
- package/README.md +83 -27
- package/claude.md +32 -3
- package/data/README.md +52 -14
- package/data/agentic/README.md +22 -0
- package/data/agentic/capabilities.yml +150 -0
- package/data/agentic/migration-gemini-to-antigravity.md +11 -0
- package/data/guideline-mappings.yml +0 -99
- package/data/version.json +3 -3
- package/data/workflows/README.md +22 -1
- package/data/workflows/sdlc.md +133 -0
- package/dist/index.js +14399 -13093
- package/jest.config.js +1 -0
- package/package.json +5 -6
- package/data/templates/hooks/testing.json +0 -17
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aicgen-project",
|
|
3
|
+
"interface": {
|
|
4
|
+
"displayName": "aicgen Project Plugins"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "aicgen-sdlc",
|
|
9
|
+
"source": {
|
|
10
|
+
"source": "local",
|
|
11
|
+
"path": "./plugins/aicgen-sdlc"
|
|
12
|
+
},
|
|
13
|
+
"policy": {
|
|
14
|
+
"installation": "INSTALLED_BY_DEFAULT",
|
|
15
|
+
"authentication": "ON_INSTALL"
|
|
16
|
+
},
|
|
17
|
+
"category": "Productivity"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
import json
|
|
3
|
+
|
|
4
|
+
context = (
|
|
5
|
+
"AICGEN profile full: read AGENTS.md and .codex/instructions.md before editing. "
|
|
6
|
+
"Use project-local aicgen skills for SDLC work. Treat hooks, MCP, and plugin setup as advanced surfaces "
|
|
7
|
+
"that require explicit user review before expansion."
|
|
8
|
+
)
|
|
9
|
+
|
|
10
|
+
print(json.dumps({
|
|
11
|
+
"continue": True,
|
|
12
|
+
"hookSpecificOutput": {
|
|
13
|
+
"hookEventName": "SessionStart",
|
|
14
|
+
"additionalContext": context
|
|
15
|
+
}
|
|
16
|
+
}))
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hooks": {
|
|
3
|
+
"SessionStart": [
|
|
4
|
+
{
|
|
5
|
+
"matcher": "startup|resume",
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": "/usr/bin/python3 \"$(git rev-parse --show-toplevel 2>/dev/null || pwd)/.codex/hooks/aicgen_session_start.py\"",
|
|
10
|
+
"timeout": 10,
|
|
11
|
+
"statusMessage": "Loading AICGEN profile limits"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"aicgen": {
|
|
18
|
+
"profileLevel": "full",
|
|
19
|
+
"safety": [
|
|
20
|
+
"This hook only adds developer context at session start.",
|
|
21
|
+
"Review and trust Codex hooks with /hooks before they run.",
|
|
22
|
+
"Do not add network calls, secrets access, or destructive commands to generated hooks."
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
}
|