anchi-kit 1.2.7 โ†’ 1.2.9

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.
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: โž• Add new skills or agents to the project
3
+ ---
4
+
5
+ This command installs new components into your project.
6
+
7
+ 1. Run add command
8
+ // turbo
9
+ $ npx anchi-kit add {{args}}
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ“ˆ View project analytics and metrics
3
+ ---
4
+
5
+ This command shows project statistics and velocity metrics.
6
+
7
+ 1. Run analytics
8
+ // turbo
9
+ $ npx anchi-kit analytics
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ” Analyze impact of changes
3
+ ---
4
+
5
+ This command analyzes the potential impact of changes or specific files.
6
+
7
+ 1. Run analyze
8
+ // turbo
9
+ $ npx anchi-kit brain analyze {{args}}
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ“ Audit AI decision logs
3
+ ---
4
+
5
+ This command reviews the AI's past decisions and execution logs.
6
+
7
+ 1. Run audit
8
+ // turbo
9
+ $ npx anchi-kit brain audit
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿง  Interact with the AI Brain
3
+ ---
4
+
5
+ This command is the entry point for all cognitive functions (memory, learn, etc).
6
+
7
+ 1. Run brain command
8
+ // turbo
9
+ $ npx anchi-kit brain {{args}}
@@ -0,0 +1,59 @@
1
+ ---
2
+ description: ๐Ÿงน Clean up memory, logs, or reset context
3
+ ---
4
+
5
+ # /clean Workflow for Antigravity
6
+
7
+ Reset AI context and clean up temporary files.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /clean # Basic context reset
13
+ /clean --memory # Clear AI memory
14
+ /clean --audit # Clear audit logs
15
+ /clean --all # Full cleanup
16
+ ```
17
+
18
+ ## Execution Flow
19
+
20
+ // turbo-all
21
+
22
+ 1. Read @ANTIGRAVITY.md to ensure context
23
+ 2. Determine cleanup scope from flags
24
+ 3. Execute cleanup:
25
+ - Default: Reset current session context
26
+ - --memory: Clear `.ai-memory/` contents
27
+ - --audit: Clear `.ai-audit/` logs
28
+ - --all: Both memory and audit
29
+ 4. Confirm cleanup completed
30
+ 5. Ready for fresh `/start`
31
+
32
+ ## When to Use
33
+
34
+ | Situation | Command |
35
+ | ---------------------- | ----------------- |
36
+ | AI seems confused | `/clean` |
37
+ | AI repeating mistakes | `/clean` |
38
+ | Starting fresh project | `/clean --all` |
39
+ | Privacy cleanup | `/clean --memory` |
40
+ | Disk space | `/clean --audit` |
41
+
42
+ ## Output Format
43
+
44
+ ```
45
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
46
+ โ”ƒ ๐Ÿงน CLEANUP COMPLETE โ”ƒ
47
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
48
+ โ”ƒ โœ“ Session context cleared โ”ƒ
49
+ โ”ƒ โœ“ [Additional items if --flags] โ”ƒ
50
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
51
+ โ”ƒ Run /start to begin fresh session โ”ƒ
52
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
53
+ ```
54
+
55
+ ## Safety
56
+
57
+ - Memory cleanup is NON-REVERSIBLE
58
+ - Consider `/memory snapshot` before cleaning
59
+ - Audit logs may be needed for compliance
@@ -0,0 +1,58 @@
1
+ ---
2
+ description: ๐Ÿ“ Git commit with conventional message
3
+ ---
4
+
5
+ # /commit Workflow for Antigravity
6
+
7
+ Create conventional commits easily.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /commit "message" # Auto-detect type
13
+ /commit "feat: add login" # Explicit type
14
+ /commit --amend # Amend last commit
15
+ ```
16
+
17
+ ## Execution Flow
18
+
19
+ // turbo-all
20
+
21
+ 1. Read @ANTIGRAVITY.md for context
22
+ 2. Stage changed files
23
+ 3. Parse commit message
24
+ 4. Apply conventional commit format
25
+ 5. Execute git commit
26
+ 6. Report result
27
+
28
+ ## Commit Types
29
+
30
+ | Type | Description | Example |
31
+ | ---------- | ------------- | -------------------------- |
32
+ | `feat` | New feature | `feat: add user dashboard` |
33
+ | `fix` | Bug fix | `fix: resolve login error` |
34
+ | `docs` | Documentation | `docs: update readme` |
35
+ | `refactor` | Code refactor | `refactor: extract utils` |
36
+ | `test` | Add tests | `test: add user tests` |
37
+ | `chore` | Maintenance | `chore: update deps` |
38
+
39
+ ## Output Format
40
+
41
+ ```
42
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
43
+ โ”ƒ ๐Ÿ“ COMMIT CREATED โ”ƒ
44
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
45
+ โ”ƒ Type: feat โ”ƒ
46
+ โ”ƒ Message: add user authentication โ”ƒ
47
+ โ”ƒ Hash: abc1234 โ”ƒ
48
+ โ”ƒ Files: 4 changed โ”ƒ
49
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
50
+ โ”ƒ Ready to push: git push origin main โ”ƒ
51
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
52
+ ```
53
+
54
+ ## Safety
55
+
56
+ - Always shows changed files before commit
57
+ - Requires confirmation for large commits (>10 files)
58
+ - Never auto-pushes without explicit command
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ“Š Open the Pulse Dashboard
3
+ ---
4
+
5
+ This command launches the interactive web dashboard.
6
+
7
+ 1. Launch dashboard
8
+ // turbo
9
+ $ npx anchi-kit dashboard
@@ -0,0 +1,53 @@
1
+ ---
2
+ description: ๐ŸŽฏ Execute any task with AI orchestration
3
+ ---
4
+
5
+ # /do Workflow for Antigravity
6
+
7
+ Universal command that routes to the right agent and skills.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /do "Mรด tแบฃ task cแปงa bแบกn"
13
+ /do "Task" --careful # Extra validation
14
+ /do "Task" --fast # Skip reviews
15
+ ```
16
+
17
+ ## Execution Flow
18
+
19
+ // turbo-all
20
+
21
+ 1. **ORCHESTRATION**: Parse intent, analyze risk (Low/Medium/High).
22
+ 2. **GROUNDING**: Auto-scan Knowledge Graph for related files (`/scout`).
23
+ 3. **PACKS**: Load domain context (Backend, Quality, Blockchain...).
24
+ 4. **AGENTS**: Select specialized role (Fullstack, Tester, Architect...).
25
+ 5. **SKILLS**: Execute using canonical patterns.
26
+ 6. **REPORT**: Verify results overlap with audit logs.
27
+ 7. **TRANSPARENCY**: Explain decisions via `/why`.
28
+
29
+ ## Agent Selection
30
+
31
+ | Keywords | Primary Agent |
32
+ | ----------------------- | --------------------- |
33
+ | UI, design, style | ui-ux-designer |
34
+ | API, backend, database | fullstack-developer |
35
+ | test, spec, coverage | tester |
36
+ | bug, error, fix | debugger |
37
+ | docs, readme | docs-manager |
38
+ | security, auth, payment | security-auditor |
39
+ | performance, optimize | performance-optimizer |
40
+
41
+ ## Output Format
42
+
43
+ ```
44
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
45
+ โ”ƒ ๐Ÿ“‹ /do "Task Description" โ”ƒ
46
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
47
+ โ”ƒ Agent: [selected-agent] โ”ƒ
48
+ โ”ƒ Skills: [activated-skills] โ”ƒ
49
+ โ”ƒ Risk: [LOW/MEDIUM/HIGH] โ”ƒ
50
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
51
+ โ”ƒ [Execution steps and results] โ”ƒ
52
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
53
+ ```
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿš‘ Check system health and diagnose issues
3
+ ---
4
+
5
+ This command runs a full system diagnostic to find issues.
6
+
7
+ 1. Run doctor
8
+ // turbo
9
+ $ npx anchi-kit doctor
@@ -0,0 +1,90 @@
1
+ ---
2
+ description: โ“ Show available commands and usage
3
+ ---
4
+
5
+ # /help Workflow for Antigravity
6
+
7
+ Display available commands and quick reference.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /help # Show all commands
13
+ /help do # Help for specific command
14
+ /help agents # List available agents
15
+ /help skills # List available skills
16
+ ```
17
+
18
+ ## Execution Flow
19
+
20
+ // turbo-all
21
+
22
+ 1. Read @ANTIGRAVITY.md for command reference
23
+ 2. Display requested help section
24
+ 3. Format as structured table
25
+
26
+ ## Command Reference
27
+
28
+ ### Core Trinity
29
+
30
+ | Command | Description |
31
+ | ----------- | -------------------------------- |
32
+ | `/start` | Initialize session, load context |
33
+ | `/do "..."` | Execute any task |
34
+ | `/clean` | Reset context, cleanup |
35
+
36
+ ### Development
37
+
38
+ | Command | Description |
39
+ | ----------- | ------------------------------ |
40
+ | `/generate` | Generate code from description |
41
+ | `/test` | Run tests |
42
+ | `/review` | Code review |
43
+ | `/commit` | Git commit with message |
44
+
45
+ ### Discovery
46
+
47
+ | Command | Description |
48
+ | -------- | --------------------------- |
49
+ | `/scout` | Semantic search in codebase |
50
+ | `/why` | Explain AI's decisions |
51
+ | `/audit` | View decision history |
52
+
53
+ ### Design
54
+
55
+ | Command | Description |
56
+ | --------- | --------------------- |
57
+ | `/design` | UI/UX design tasks |
58
+ | `/theme` | Theme/styling changes |
59
+ | `/docs` | Documentation tasks |
60
+
61
+ ### System
62
+
63
+ | Command | Description |
64
+ | --------- | ------------------- |
65
+ | `/status` | Project status |
66
+ | `/memory` | Memory management |
67
+ | `/config` | Configuration |
68
+ | `/health` | System health check |
69
+
70
+ ## CLI Commands
71
+
72
+ ```bash
73
+ npx anchi-kit # Setup wizard
74
+ npx anchi-kit doctor # Health check
75
+ npx anchi-kit dashboard # Web dashboard
76
+ npx anchi-kit brain # Memory management
77
+ npx anchi-kit scout # Semantic search
78
+ ```
79
+
80
+ ## Output Format
81
+
82
+ ```
83
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
84
+ โ”ƒ ๐Ÿ“– ANCHI-KIT HELP v1.2.0 โ”ƒ
85
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
86
+ โ”ƒ 23 Commands | 22 Agents | 61 Skills โ”ƒ
87
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
88
+ โ”ƒ [Command tables as above] โ”ƒ
89
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
90
+ ```
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ“š Learn from other projects
3
+ ---
4
+
5
+ This command enables cross-project learning and pattern ingestion.
6
+
7
+ 1. Run learn
8
+ // turbo
9
+ $ npx anchi-kit brain learn
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿง  Manage AI memory and context
3
+ ---
4
+
5
+ This command manages the AI's long-term memory and context storage.
6
+
7
+ 1. Execute the memory command
8
+ // turbo
9
+ $ npx anchi-kit memory {{args}}
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿงฉ Detect and manage code patterns
3
+ ---
4
+
5
+ This command identifies recurring code patterns and architectural violations.
6
+
7
+ 1. Run patterns
8
+ // turbo
9
+ $ npx anchi-kit patterns
@@ -0,0 +1,78 @@
1
+ ---
2
+ description: ๐Ÿ” Semantic search and codebase exploration
3
+ ---
4
+
5
+ # /scout Workflow for Antigravity
6
+
7
+ Find code by meaning, not just text.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /scout "query" # Semantic search
13
+ /scout --ingest # Index codebase into graph
14
+ /scout --stats # Show index statistics
15
+ ```
16
+
17
+ ## Execution Flow
18
+
19
+ // turbo-all
20
+
21
+ 1. Read @ANTIGRAVITY.md for context
22
+ 2. Parse search query or flags
23
+ 3. Execute:
24
+ - Query mode: Search vector store
25
+ - Ingest mode: Scan and index files
26
+ - Stats mode: Show graph statistics
27
+ 4. Return results with file locations
28
+
29
+ ## Examples
30
+
31
+ ```
32
+ /scout "function that handles user login"
33
+ /scout "where is the payment processing logic"
34
+ /scout "component that displays user profile"
35
+ /scout "database connection setup"
36
+ ```
37
+
38
+ ## Output Format
39
+
40
+ ### Search Results
41
+
42
+ ```
43
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
44
+ โ”ƒ ๐Ÿ” SCOUT: "payment processing" โ”ƒ
45
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
46
+ โ”ƒ Found 3 matches: โ”ƒ
47
+ โ”ƒ โ”ƒ
48
+ โ”ƒ 1. src/lib/payment.ts (0.92) โ”ƒ
49
+ โ”ƒ โ†’ processPayment(), refund() โ”ƒ
50
+ โ”ƒ โ”ƒ
51
+ โ”ƒ 2. src/api/stripe/route.ts (0.87) โ”ƒ
52
+ โ”ƒ โ†’ POST handler for payments โ”ƒ
53
+ โ”ƒ โ”ƒ
54
+ โ”ƒ 3. src/hooks/usePayment.ts (0.81) โ”ƒ
55
+ โ”ƒ โ†’ React hook for payment state โ”ƒ
56
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
57
+ ```
58
+
59
+ ### Ingest Results
60
+
61
+ ```
62
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
63
+ โ”ƒ ๐Ÿ“Š SCOUT INGEST COMPLETE โ”ƒ
64
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
65
+ โ”ƒ Files indexed: 127 โ”ƒ
66
+ โ”ƒ Nodes created: 543 โ”ƒ
67
+ โ”ƒ Edges created: 892 โ”ƒ
68
+ โ”ƒ Time: 4.2s โ”ƒ
69
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
70
+ ```
71
+
72
+ ## Benefits over grep
73
+
74
+ | grep | /scout |
75
+ | ---------------- | --------------------------------- |
76
+ | Exact text match | Semantic meaning |
77
+ | "login" only | Finds "authentication", "sign in" |
78
+ | No context | Understands code structure |
@@ -0,0 +1,23 @@
1
+ ---
2
+ description: ๐Ÿš€ Initialize Anchi-Kit session (auto-loads ANTIGRAVITY.md)
3
+ ---
4
+
5
+ # /start Workflow for Antigravity
6
+
7
+ This workflow auto-loads the ANTIGRAVITY.md system instructions.
8
+
9
+ ## Steps
10
+
11
+ // turbo-all
12
+
13
+ 1. Read @ANTIGRAVITY.md to load system instructions
14
+ 2. Run /start command to initialize project context
15
+
16
+ ## Result
17
+
18
+ After running this workflow, AI will:
19
+
20
+ - Understand your project structure
21
+ - Know available commands (/do, /clean, /help, etc.)
22
+ - Follow Agent/Skill activation rules
23
+ - Use box-style output format
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ‘ฅ Manage team roles and configurations
3
+ ---
4
+
5
+ This command manages team settings, roles, and permissions.
6
+
7
+ 1. Execute the team command
8
+ // turbo
9
+ $ npx anchi-kit team {{args}}
@@ -0,0 +1,42 @@
1
+ ---
2
+ description: โœ… Run tests and verify code
3
+ ---
4
+
5
+ # /test Workflow for Antigravity
6
+
7
+ Run tests and fix issues.
8
+
9
+ ## Usage
10
+
11
+ ```
12
+ /test # Run all tests
13
+ /test --fix # Run tests + auto-fix failures
14
+ /test --watch # Watch mode
15
+ /test --coverage # With coverage report
16
+ /test [file] # Specific file
17
+ ```
18
+
19
+ ## Execution Flow
20
+
21
+ // turbo-all
22
+
23
+ 1. Read @ANTIGRAVITY.md for context
24
+ 2. Detect test framework (vitest, jest, playwright)
25
+ 3. Run tests with specified flags
26
+ 4. Parse and format results
27
+ 5. If --fix: Attempt to fix failing tests
28
+
29
+ ## Output Format
30
+
31
+ ```
32
+ โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”“
33
+ โ”ƒ โœ… TEST RESULTS โ”ƒ
34
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
35
+ โ”ƒ Total: 42 | Pass: 40 | Fail: 2 โ”ƒ
36
+ โ”ƒ Coverage: 78.5% โ”ƒ
37
+ โ”ฃโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”ซ
38
+ โ”ƒ โŒ user.service.test.ts:45 โ”ƒ
39
+ โ”ƒ Expected: "active" โ”ƒ
40
+ โ”ƒ Received: "pending" โ”ƒ
41
+ โ”—โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”›
42
+ ```
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ–ฅ๏ธ Open Terminal UI
3
+ ---
4
+
5
+ This command launches the rich Terminal User Interface.
6
+
7
+ 1. Run TUI
8
+ // turbo
9
+ $ npx anchi-kit tui
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ—‘๏ธ Uninstall anchi-kit
3
+ ---
4
+
5
+ This command removes anchi-kit from the project.
6
+
7
+ 1. Run uninstall
8
+ // turbo
9
+ $ npx anchi-kit uninstall
@@ -0,0 +1,9 @@
1
+ ---
2
+ description: ๐Ÿ”„ Update anchi-kit to latest version
3
+ ---
4
+
5
+ This command checks for and installs updates.
6
+
7
+ 1. Run update
8
+ // turbo
9
+ $ npx anchi-kit update
@@ -0,0 +1,42 @@
1
+ ---
2
+ name: security-auditor
3
+ description: Specialized agent for security reviews, vulnerability assessments, and compliance checks. Focuses on OWASP Top 10, sensitive data handling, and secure coding practices.
4
+ model: sonnet
5
+ ---
6
+
7
+ You are a **Security Auditor**, an expert in application security and compliance.
8
+
9
+ ## Core Responsibilities
10
+
11
+ 1. **Vulnerability Assessment**: Identify potential security flaws (XSS, CSRF, Injection, etc.).
12
+ 2. **Code Review**: Analyze code changes for security implications.
13
+ 3. **Compliance Check**: Ensure adherence to data protection rules (GDPR, PII handling).
14
+ 4. **Configuration Audit**: Verify secure configuration of infrastructure and dependencies.
15
+
16
+ ## Security Standards
17
+
18
+ - **OWASP Top 10**: Always check for common web vulnerabilities.
19
+ - **Least Privilege**: Ensure permissions are scoped correctly.
20
+ - **Data Protection**: Verify encryption of sensitive data at rest and in transit.
21
+ - **Input Validation**: Ensure all user inputs are sanitized.
22
+
23
+ ## Execution Process
24
+
25
+ 1. **Analyze**: Read the code/plan focusing purely on security aspects.
26
+ 2. **Identify**: Flag any lines of code that pose a security risk.
27
+ 3. **Verify**: Check against `deploy-guard.yaml` and `data-classification.yaml` rules.
28
+ 4. **Report**: valid/invalid status with specific remediation steps.
29
+
30
+ ## Tools & Skills
31
+
32
+ - Activate `skills/security` or relevant security packs if available.
33
+ - Use `patterns` to detect known security anti-patterns.
34
+
35
+ ## Output Format
36
+
37
+ Provide a structured Security Review:
38
+
39
+ - **Risk Level**: [Low/Medium/High/Critical]
40
+ - **Findings**: List of specific issues.
41
+ - **Recommendations**: Concrete steps to fix.
42
+ - **Approval**: [Approved/Rejected]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anchi-kit",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "The Ultimate AI-Native Toolkit for Cursor & Gemini. Installs into any existing project. Includes commands, agents, skills, and architecture presets.",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -63,6 +63,7 @@
63
63
  ".antigravity/data-classification.yaml",
64
64
  ".antigravity/deploy-guard.yaml",
65
65
  ".antigravity/compliance/",
66
+ ".agent/workflows/",
66
67
  "presets/",
67
68
  "docs/",
68
69
  ".cursorrules",
@@ -435,6 +435,16 @@ async function init() {
435
435
  }
436
436
  }
437
437
 
438
+ // 5. Install .agent/workflows (Enables slash commands in Antigravity)
439
+ log.info(' ๐ŸŽฏ Installing Slash Commands...');
440
+ const agentWfSource = path.join(kitPath, '.agent/workflows');
441
+ const agentWfDest = path.join(targetPath, '.agent/workflows');
442
+ if (fs.existsSync(agentWfSource)) {
443
+ copyDirRecursive(agentWfSource, agentWfDest);
444
+ const wfCount = fs.readdirSync(agentWfSource).filter(f => f.endsWith('.md')).length;
445
+ log.success(` + .agent/workflows/ (${wfCount} commands)`);
446
+ }
447
+
438
448
  // Copy MODEL_COSTS.md
439
449
  const modelCostsPath = path.join(kitPath, '.cursor/MODEL_COSTS.md');
440
450
  if (fs.existsSync(modelCostsPath)) {