@event4u/agent-config 3.0.0 → 3.1.1
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/.agent-src/commands/install-via-agent.md +129 -0
- package/.agent-src/commands/video/from-script.md +1 -1
- package/.agent-src/commands/video.md +1 -1
- package/.agent-src/contexts/execution/cheap-question-mechanics.md +81 -0
- package/.agent-src/rules/caveman-speak.md +2 -2
- package/.agent-src/rules/context-hygiene.md +36 -0
- package/.agent-src/rules/engineering-safety-floor.md +102 -0
- package/.agent-src/rules/finance-safety-floor.md +114 -0
- package/.agent-src/rules/git-history-discipline.md +1 -1
- package/.agent-src/rules/no-cheap-questions.md +34 -32
- package/.agent-src/rules/provider-lifecycle-discipline.md +4 -4
- package/.agent-src/rules/strategy-safety-floor.md +114 -0
- package/.agent-src/skills/agents-md-thin-root/SKILL.md +15 -9
- package/.agent-src/skills/async-python-patterns/SKILL.md +1 -1
- package/.agent-src/skills/project-analysis-node-express/SKILL.md +1 -1
- package/.agent-src/skills/readme-reviewer/SKILL.md +52 -3
- package/.agent-src/skills/readme-writing/SKILL.md +52 -4
- package/.agent-src/skills/readme-writing-package/SKILL.md +48 -5
- package/.agent-src/skills/systematic-debugging/SKILL.md +41 -0
- package/.agent-src/templates/agents/agent-project-settings.example.yml +1 -1
- package/.agent-src/templates/hooks/pre-commit-frontmatter +66 -0
- package/.agent-src/templates/hooks/pre-commit-roadmap-progress +78 -39
- package/.agent-src/templates/scripts/work_engine/_lib/agent_settings.py +4 -1
- package/.agent-src/templates/scripts/work_engine/orchestration.py +25 -11
- package/.claude-plugin/marketplace.json +2 -1
- package/AGENTS.md +10 -8
- package/CHANGELOG.md +233 -123
- package/README.md +165 -553
- package/config/agent-settings.template.yml +0 -7
- package/config/discovery/packs.yml +20 -0
- package/config/discovery/unassigned-artefacts.yml +2 -0
- package/config/gitignore-block.txt +19 -3
- package/dist/cli/commands/uiServe.js +13 -4
- package/dist/cli/commands/uiServe.js.map +1 -1
- package/dist/cli/registry.js +2 -0
- package/dist/cli/registry.js.map +1 -1
- package/dist/discovery/deprecation-report.md +7 -0
- package/dist/discovery/discovery-manifest.json +2107 -1409
- package/dist/discovery/discovery-manifest.json.sha256 +1 -1
- package/dist/discovery/discovery-manifest.summary.md +9 -9
- package/dist/discovery/orphan-report.md +10 -0
- package/dist/discovery/packs.json +1002 -0
- package/dist/discovery/trust-report.md +26 -0
- package/dist/discovery/workspaces.json +705 -0
- package/dist/mcp/registry-manifest.json +4 -4
- package/dist/router.json +1623 -0
- package/dist/server/app.js +11 -3
- package/dist/server/app.js.map +1 -1
- package/dist/server/io/atomicMultiWrite.js +3 -1
- package/dist/server/io/atomicMultiWrite.js.map +1 -1
- package/dist/server/io/yamlIO.js +22 -0
- package/dist/server/io/yamlIO.js.map +1 -1
- package/dist/server/routes/ping.js +8 -0
- package/dist/server/routes/ping.js.map +1 -1
- package/dist/server/routes/schema.js +2 -2
- package/dist/server/routes/schema.js.map +1 -1
- package/dist/server/routes/settings.js +104 -23
- package/dist/server/routes/settings.js.map +1 -1
- package/dist/server/routes/userMd.js +37 -27
- package/dist/server/routes/userMd.js.map +1 -1
- package/dist/server/routes/wizard.js +256 -20
- package/dist/server/routes/wizard.js.map +1 -1
- package/dist/server/schemas/settings.js +0 -1
- package/dist/server/schemas/settings.js.map +1 -1
- package/dist/server/token.js +10 -3
- package/dist/server/token.js.map +1 -1
- package/dist/server/writeRoot.js +28 -11
- package/dist/server/writeRoot.js.map +1 -1
- package/dist/server/writeRoot.test.js +22 -4
- package/dist/server/writeRoot.test.js.map +1 -1
- package/dist/shared/userMd/formAdapter.js +29 -51
- package/dist/shared/userMd/formAdapter.js.map +1 -1
- package/dist/shared/userMd/schema.js +32 -104
- package/dist/shared/userMd/schema.js.map +1 -1
- package/dist/shared/userMd/utils.js +64 -50
- package/dist/shared/userMd/utils.js.map +1 -1
- package/dist/ui/assets/index-D-DY1ywI.js +35 -0
- package/dist/ui/assets/index-D-DY1ywI.js.map +1 -0
- package/dist/ui/index.html +1 -1
- package/docs/adrs/router/0001-three-tier-routing.md +5 -5
- package/docs/adrs/smoke/0001-per-tier-smoke-scripts.md +1 -1
- package/docs/architecture.md +3 -3
- package/docs/archive/CHANGELOG-pre-3.1.0.md +167 -0
- package/docs/catalog.md +30 -26
- package/docs/contracts/CHANGELOG-conventions.md +1 -1
- package/docs/contracts/agent-user-schema.md +6 -9
- package/docs/contracts/consumer-bridge.md +79 -0
- package/docs/contracts/discovery-manifest.md +209 -0
- package/docs/contracts/discovery-manifest.schema.json +77 -4
- package/docs/contracts/explain-trace.schema.json +1 -1
- package/docs/contracts/file-ownership-matrix.json +197 -13
- package/docs/contracts/frontmatter-contract.md +140 -0
- package/docs/contracts/gui-wizard.md +223 -0
- package/docs/contracts/installer-agent-mode.md +137 -0
- package/docs/contracts/kernel-membership.md +1 -1
- package/docs/contracts/mcp-tool-inventory.md +9 -9
- package/docs/contracts/namespace.md +6 -6
- package/docs/contracts/provider-lifecycle.md +5 -5
- package/docs/contracts/rule-router.md +4 -4
- package/docs/contracts/settings-api.md +53 -6
- package/docs/contracts/smoke-contracts.md +3 -3
- package/docs/contracts/trust-and-safety.md +144 -0
- package/docs/customization.md +2 -2
- package/docs/decisions/ADR-007-agent-discovery-scopes.md +12 -0
- package/docs/decisions/ADR-013-discovery-frontmatter-contract.md +24 -0
- package/docs/decisions/ADR-015-discovery-manifest-contract.md +146 -0
- package/docs/decisions/ADR-016-installer-architecture.md +189 -0
- package/docs/decisions/ADR-017-monorepo-physical-layout.md +261 -0
- package/docs/decisions/ADR-018-trust-and-safety-layer.md +159 -0
- package/docs/decisions/ADR-019-router-json-dist-location.md +124 -0
- package/docs/decisions/ADR-020-global-only-consumer-scope.md +123 -0
- package/docs/decisions/ADR-021-deployment-shape.md +153 -0
- package/docs/decisions/INDEX.md +7 -0
- package/docs/deploy/connector-setup.md +129 -0
- package/docs/deploy/env-vars.md +70 -0
- package/docs/deploy/policy-cookbook.md +130 -0
- package/docs/deploy/quickstart.md +112 -0
- package/docs/distribution/public-install-smoke.md +68 -0
- package/docs/distribution/registries.md +55 -0
- package/docs/distribution/telemetry-privacy.md +128 -0
- package/docs/distribution/telemetry-schema.md +174 -0
- package/docs/featured-skills.md +95 -0
- package/docs/getting-started-by-role.md +19 -1
- package/docs/getting-started.md +2 -2
- package/docs/guidelines/agent-infra/installed-tools-manifest.md +11 -8
- package/docs/guidelines/docs/readme-size-and-splitting.md +53 -1
- package/docs/installation.md +27 -14
- package/docs/maintainers/dev-mode.md +105 -0
- package/docs/setup/per-ide/claude-desktop.md +3 -2
- package/docs/wizard.md +39 -4
- package/package.json +18 -1
- package/scripts/__pycache__/validate_frontmatter.cpython-312.pyc +0 -0
- package/scripts/_cli/cmd_doctor.py +150 -2
- package/scripts/_cli/cmd_explain.py +2 -1
- package/scripts/_cli/cmd_migrate_to_global.py +415 -0
- package/scripts/_cli/cmd_settings_migrate.py +146 -0
- package/scripts/_cli/explain_last/route.py +2 -1
- package/scripts/_dispatch.bash +36 -3
- package/scripts/_lib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/scripts/_lib/__pycache__/agent_src.cpython-312.pyc +0 -0
- package/scripts/_lib/agent_settings.py +4 -1
- package/scripts/_lib/agent_src.py +157 -0
- package/scripts/agent-config +17 -6
- package/scripts/audit_skill_descriptions.py +18 -6
- package/scripts/build_discovery_manifest.py +373 -17
- package/scripts/check_artefact_checksums.py +104 -0
- package/scripts/check_cluster_patterns.py +20 -4
- package/scripts/check_command_count_messaging.py +33 -14
- package/scripts/check_council_references.py +43 -4
- package/scripts/check_overlay_cascade_subdirs.py +7 -3
- package/scripts/check_references.py +5 -2
- package/scripts/check_reply_consistency.py +32 -9
- package/scripts/check_template_pin_drift.py +24 -7
- package/scripts/check_token_optimizer_freshness.py +18 -3
- package/scripts/compile_router.py +34 -2
- package/scripts/compress.py +162 -44
- package/scripts/config/presets.py +19 -1
- package/scripts/config/profiles.py +16 -1
- package/scripts/discovery_stats.py +70 -0
- package/scripts/expected_perms.json +47 -0
- package/scripts/generate_index.py +78 -46
- package/scripts/generate_ownership_matrix.py +98 -43
- package/scripts/generate_pack_manifests.py +183 -0
- package/scripts/install +18 -1
- package/scripts/install.py +934 -59
- package/scripts/install.sh +27 -9
- package/scripts/lint_agents_layout.py +93 -13
- package/scripts/lint_agents_md.py +1 -1
- package/scripts/lint_archived_skills.py +32 -16
- package/scripts/lint_bench_corpus.py +14 -2
- package/scripts/lint_command_tiers.py +15 -2
- package/scripts/lint_featured_skills.py +139 -0
- package/scripts/lint_framework_leakage.py +33 -6
- package/scripts/lint_global_paths.py +147 -0
- package/scripts/lint_orchestration_dsl.py +6 -3
- package/scripts/lint_pack_boundaries.py +147 -0
- package/scripts/lint_pack_first_win.py +103 -0
- package/scripts/lint_readme_jargon.py +131 -0
- package/scripts/lint_readme_size.py +33 -0
- package/scripts/lint_rule_interactions.py +23 -5
- package/scripts/lint_rule_tiers.py +12 -3
- package/scripts/lint_trust_coherence.py +212 -0
- package/scripts/measure_rule_budget.py +22 -4
- package/scripts/move_artefact.py +143 -0
- package/scripts/new_skill.py +148 -0
- package/scripts/plan_physical_move.py +353 -0
- package/scripts/refine_ticket_detect.py +30 -7
- package/scripts/release.py +22 -2
- package/scripts/schemas/command.schema.json +4 -0
- package/scripts/skill_linter.py +248 -118
- package/scripts/skill_trigger_eval.py +28 -8
- package/scripts/smoke/kernel.sh +1 -1
- package/scripts/smoke/router.sh +24 -5
- package/scripts/smoke/skills.sh +15 -7
- package/scripts/smoke_quickstart.py +11 -2
- package/scripts/snapshot_agent_outputs.py +144 -0
- package/scripts/update_counts.py +45 -17
- package/scripts/validate_decision_engine.py +9 -1
- package/scripts/validate_discovery_manifest.py +94 -0
- package/scripts/validate_frontmatter.py +39 -20
- package/scripts/verify_physical_move.py +185 -0
- package/templates/agent-user.md +0 -1
- package/templates/agent-user.yml +21 -0
- package/templates/minimal/agents-overrides-readme.md +46 -0
- package/templates/minimal/overrides-gitkeep +2 -0
- package/dist/ui/assets/index-BTRcKDlB.js +0 -39
- package/dist/ui/assets/index-BTRcKDlB.js.map +0 -1
- package/templates/minimal/agents-gitkeep +0 -2
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
{
|
|
2
|
+
"checksum": "sha256:d2526f442636cd6d95db824cf1431951ffbe80c48e00feca30d48d74819e7bdc",
|
|
3
|
+
"generated_at": "2026-05-24T15:36:32Z",
|
|
4
|
+
"scanner_version": "80c8c0b8b827",
|
|
5
|
+
"workspaces": [
|
|
6
|
+
{
|
|
7
|
+
"artefact_count": 125,
|
|
8
|
+
"default_packs": [
|
|
9
|
+
"engineering-base"
|
|
10
|
+
],
|
|
11
|
+
"description": "Code, tests, CI, reviews, architecture.",
|
|
12
|
+
"id": "engineering",
|
|
13
|
+
"label": "Engineering",
|
|
14
|
+
"optional_packs": [
|
|
15
|
+
"php",
|
|
16
|
+
"laravel",
|
|
17
|
+
"symfony",
|
|
18
|
+
"javascript",
|
|
19
|
+
"typescript",
|
|
20
|
+
"react",
|
|
21
|
+
"nextjs",
|
|
22
|
+
"python"
|
|
23
|
+
],
|
|
24
|
+
"packs": [
|
|
25
|
+
{
|
|
26
|
+
"artefact_count": 84,
|
|
27
|
+
"artefacts": [
|
|
28
|
+
"packages/core/.agent-src.uncompressed/rules/commit-conventions.md",
|
|
29
|
+
"packages/core/.agent-src.uncompressed/rules/commit-policy.md",
|
|
30
|
+
"packages/core/.agent-src.uncompressed/rules/docker-commands.md",
|
|
31
|
+
"packages/core/.agent-src.uncompressed/rules/downstream-changes.md",
|
|
32
|
+
"packages/core/.agent-src.uncompressed/rules/engineering-safety-floor.md",
|
|
33
|
+
"packages/core/.agent-src.uncompressed/rules/git-history-discipline.md",
|
|
34
|
+
"packages/core/.agent-src.uncompressed/rules/improve-before-implement.md",
|
|
35
|
+
"packages/core/.agent-src.uncompressed/rules/minimal-safe-diff.md",
|
|
36
|
+
"packages/core/.agent-src.uncompressed/rules/non-destructive-by-default.md",
|
|
37
|
+
"packages/core/.agent-src.uncompressed/rules/scope-control.md",
|
|
38
|
+
"packages/core/.agent-src.uncompressed/rules/security-sensitive-stop.md",
|
|
39
|
+
"packages/core/.agent-src.uncompressed/rules/think-before-action.md",
|
|
40
|
+
"packages/core/.agent-src.uncompressed/rules/verify-before-complete.md",
|
|
41
|
+
"packages/core/.agent-src.uncompressed/skills/accessibility-auditor/SKILL.md",
|
|
42
|
+
"packages/core/.agent-src.uncompressed/skills/adversarial-review/SKILL.md",
|
|
43
|
+
"packages/core/.agent-src.uncompressed/skills/api-design/SKILL.md",
|
|
44
|
+
"packages/core/.agent-src.uncompressed/skills/api-endpoint/SKILL.md",
|
|
45
|
+
"packages/core/.agent-src.uncompressed/skills/api-testing/SKILL.md",
|
|
46
|
+
"packages/core/.agent-src.uncompressed/skills/architecture-review-lens/SKILL.md",
|
|
47
|
+
"packages/core/.agent-src.uncompressed/skills/authz-review/SKILL.md",
|
|
48
|
+
"packages/core/.agent-src.uncompressed/skills/aws-infrastructure/SKILL.md",
|
|
49
|
+
"packages/core/.agent-src.uncompressed/skills/blast-radius-analyzer/SKILL.md",
|
|
50
|
+
"packages/core/.agent-src.uncompressed/skills/bug-analyzer/SKILL.md",
|
|
51
|
+
"packages/core/.agent-src.uncompressed/skills/code-refactoring/SKILL.md",
|
|
52
|
+
"packages/core/.agent-src.uncompressed/skills/code-review/SKILL.md",
|
|
53
|
+
"packages/core/.agent-src.uncompressed/skills/conventional-commits-writing/SKILL.md",
|
|
54
|
+
"packages/core/.agent-src.uncompressed/skills/dashboard-design/SKILL.md",
|
|
55
|
+
"packages/core/.agent-src.uncompressed/skills/data-flow-mapper/SKILL.md",
|
|
56
|
+
"packages/core/.agent-src.uncompressed/skills/data-handling-judgment/SKILL.md",
|
|
57
|
+
"packages/core/.agent-src.uncompressed/skills/database/SKILL.md",
|
|
58
|
+
"packages/core/.agent-src.uncompressed/skills/deep-reading-analyst/SKILL.md",
|
|
59
|
+
"packages/core/.agent-src.uncompressed/skills/defense-in-depth/SKILL.md",
|
|
60
|
+
"packages/core/.agent-src.uncompressed/skills/dependency-upgrade/SKILL.md",
|
|
61
|
+
"packages/core/.agent-src.uncompressed/skills/design-review/SKILL.md",
|
|
62
|
+
"packages/core/.agent-src.uncompressed/skills/devcontainer/SKILL.md",
|
|
63
|
+
"packages/core/.agent-src.uncompressed/skills/developer-like-execution/SKILL.md",
|
|
64
|
+
"packages/core/.agent-src.uncompressed/skills/docker/SKILL.md",
|
|
65
|
+
"packages/core/.agent-src.uncompressed/skills/error-handling-patterns/SKILL.md",
|
|
66
|
+
"packages/core/.agent-src.uncompressed/skills/existing-ui-audit/SKILL.md",
|
|
67
|
+
"packages/core/.agent-src.uncompressed/skills/fe-design/SKILL.md",
|
|
68
|
+
"packages/core/.agent-src.uncompressed/skills/finishing-a-development-branch/SKILL.md",
|
|
69
|
+
"packages/core/.agent-src.uncompressed/skills/form-handler/SKILL.md",
|
|
70
|
+
"packages/core/.agent-src.uncompressed/skills/git-workflow/SKILL.md",
|
|
71
|
+
"packages/core/.agent-src.uncompressed/skills/github-ci/SKILL.md",
|
|
72
|
+
"packages/core/.agent-src.uncompressed/skills/grafana/SKILL.md",
|
|
73
|
+
"packages/core/.agent-src.uncompressed/skills/incident-commander/SKILL.md",
|
|
74
|
+
"packages/core/.agent-src.uncompressed/skills/logging-monitoring/SKILL.md",
|
|
75
|
+
"packages/core/.agent-src.uncompressed/skills/merge-conflicts/SKILL.md",
|
|
76
|
+
"packages/core/.agent-src.uncompressed/skills/migration-architect/SKILL.md",
|
|
77
|
+
"packages/core/.agent-src.uncompressed/skills/mobile-e2e-strategy/SKILL.md",
|
|
78
|
+
"packages/core/.agent-src.uncompressed/skills/multi-tenancy/SKILL.md",
|
|
79
|
+
"packages/core/.agent-src.uncompressed/skills/openapi/SKILL.md",
|
|
80
|
+
"packages/core/.agent-src.uncompressed/skills/performance-analysis/SKILL.md",
|
|
81
|
+
"packages/core/.agent-src.uncompressed/skills/performance/SKILL.md",
|
|
82
|
+
"packages/core/.agent-src.uncompressed/skills/playwright-architect/SKILL.md",
|
|
83
|
+
"packages/core/.agent-src.uncompressed/skills/playwright-testing/SKILL.md",
|
|
84
|
+
"packages/core/.agent-src.uncompressed/skills/privacy-review/SKILL.md",
|
|
85
|
+
"packages/core/.agent-src.uncompressed/skills/project-analysis-core/SKILL.md",
|
|
86
|
+
"packages/core/.agent-src.uncompressed/skills/project-analysis-hypothesis-driven/SKILL.md",
|
|
87
|
+
"packages/core/.agent-src.uncompressed/skills/project-analyzer/SKILL.md",
|
|
88
|
+
"packages/core/.agent-src.uncompressed/skills/quality-tools/SKILL.md",
|
|
89
|
+
"packages/core/.agent-src.uncompressed/skills/receiving-code-review/SKILL.md",
|
|
90
|
+
"packages/core/.agent-src.uncompressed/skills/requesting-code-review/SKILL.md",
|
|
91
|
+
"packages/core/.agent-src.uncompressed/skills/risk-officer/SKILL.md",
|
|
92
|
+
"packages/core/.agent-src.uncompressed/skills/secrets-management/SKILL.md",
|
|
93
|
+
"packages/core/.agent-src.uncompressed/skills/security-audit/SKILL.md",
|
|
94
|
+
"packages/core/.agent-src.uncompressed/skills/security/SKILL.md",
|
|
95
|
+
"packages/core/.agent-src.uncompressed/skills/sentry-integration/SKILL.md",
|
|
96
|
+
"packages/core/.agent-src.uncompressed/skills/sql-writing/SKILL.md",
|
|
97
|
+
"packages/core/.agent-src.uncompressed/skills/systematic-debugging/SKILL.md",
|
|
98
|
+
"packages/core/.agent-src.uncompressed/skills/tailwind-engineer/SKILL.md",
|
|
99
|
+
"packages/core/.agent-src.uncompressed/skills/tech-debt-tracker/SKILL.md",
|
|
100
|
+
"packages/core/.agent-src.uncompressed/skills/terraform/SKILL.md",
|
|
101
|
+
"packages/core/.agent-src.uncompressed/skills/terragrunt/SKILL.md",
|
|
102
|
+
"packages/core/.agent-src.uncompressed/skills/test-driven-development/SKILL.md",
|
|
103
|
+
"packages/core/.agent-src.uncompressed/skills/test-performance/SKILL.md",
|
|
104
|
+
"packages/core/.agent-src.uncompressed/skills/testing-anti-patterns/SKILL.md",
|
|
105
|
+
"packages/core/.agent-src.uncompressed/skills/threat-modeling/SKILL.md",
|
|
106
|
+
"packages/core/.agent-src.uncompressed/skills/traefik/SKILL.md",
|
|
107
|
+
"packages/core/.agent-src.uncompressed/skills/ui-component-architect/SKILL.md",
|
|
108
|
+
"packages/core/.agent-src.uncompressed/skills/universal-project-analysis/SKILL.md",
|
|
109
|
+
"packages/core/.agent-src.uncompressed/skills/using-git-worktrees/SKILL.md",
|
|
110
|
+
"packages/core/.agent-src.uncompressed/skills/validate-feature-fit/SKILL.md",
|
|
111
|
+
"packages/core/.agent-src.uncompressed/skills/verify-completion-evidence/SKILL.md"
|
|
112
|
+
],
|
|
113
|
+
"id": "engineering-base"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"artefact_count": 6,
|
|
117
|
+
"artefacts": [
|
|
118
|
+
"packages/pack-php/.agent-src.uncompressed/rules/php-coding.md",
|
|
119
|
+
"packages/pack-php/.agent-src.uncompressed/skills/composer-packages/SKILL.md",
|
|
120
|
+
"packages/pack-php/.agent-src.uncompressed/skills/php-coder/SKILL.md",
|
|
121
|
+
"packages/pack-php/.agent-src.uncompressed/skills/php-debugging/SKILL.md",
|
|
122
|
+
"packages/pack-php/.agent-src.uncompressed/skills/php-service/SKILL.md",
|
|
123
|
+
"packages/pack-php/.agent-src.uncompressed/skills/project-analysis-zend-laminas/SKILL.md"
|
|
124
|
+
],
|
|
125
|
+
"id": "php"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"artefact_count": 25,
|
|
129
|
+
"artefacts": [
|
|
130
|
+
"packages/pack-laravel/.agent-src.uncompressed/rules/laravel-routing.md",
|
|
131
|
+
"packages/pack-laravel/.agent-src.uncompressed/rules/laravel-translations.md",
|
|
132
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/artisan-commands/SKILL.md",
|
|
133
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/blade-ui/SKILL.md",
|
|
134
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/eloquent/SKILL.md",
|
|
135
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/flux/SKILL.md",
|
|
136
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/jobs-events/SKILL.md",
|
|
137
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-api-endpoint/SKILL.md",
|
|
138
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-dto/SKILL.md",
|
|
139
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-horizon/SKILL.md",
|
|
140
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-mail/SKILL.md",
|
|
141
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-middleware/SKILL.md",
|
|
142
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-migration/SKILL.md",
|
|
143
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-notifications/SKILL.md",
|
|
144
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-pennant/SKILL.md",
|
|
145
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-pulse/SKILL.md",
|
|
146
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-reverb/SKILL.md",
|
|
147
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-scheduling/SKILL.md",
|
|
148
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-validation/SKILL.md",
|
|
149
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel-websocket/SKILL.md",
|
|
150
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/laravel/SKILL.md",
|
|
151
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/livewire-architect/SKILL.md",
|
|
152
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/livewire/SKILL.md",
|
|
153
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/pest-testing/SKILL.md",
|
|
154
|
+
"packages/pack-laravel/.agent-src.uncompressed/skills/project-analysis-laravel/SKILL.md"
|
|
155
|
+
],
|
|
156
|
+
"id": "laravel"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"artefact_count": 3,
|
|
160
|
+
"artefacts": [
|
|
161
|
+
"packages/pack-symfony/.agent-src.uncompressed/rules/symfony-routing.md",
|
|
162
|
+
"packages/pack-symfony/.agent-src.uncompressed/skills/project-analysis-symfony/SKILL.md",
|
|
163
|
+
"packages/pack-symfony/.agent-src.uncompressed/skills/symfony-workflow/SKILL.md"
|
|
164
|
+
],
|
|
165
|
+
"id": "symfony"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"artefact_count": 0,
|
|
169
|
+
"artefacts": [],
|
|
170
|
+
"id": "javascript"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"artefact_count": 1,
|
|
174
|
+
"artefacts": [
|
|
175
|
+
"packages/pack-typescript/.agent-src.uncompressed/skills/project-analysis-node-express/SKILL.md"
|
|
176
|
+
],
|
|
177
|
+
"id": "typescript"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"artefact_count": 3,
|
|
181
|
+
"artefacts": [
|
|
182
|
+
"packages/pack-react/.agent-src.uncompressed/skills/project-analysis-react/SKILL.md",
|
|
183
|
+
"packages/pack-react/.agent-src.uncompressed/skills/react-native-setup/SKILL.md",
|
|
184
|
+
"packages/pack-react/.agent-src.uncompressed/skills/react-shadcn-ui/SKILL.md"
|
|
185
|
+
],
|
|
186
|
+
"id": "react"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"artefact_count": 2,
|
|
190
|
+
"artefacts": [
|
|
191
|
+
"packages/pack-nextjs/.agent-src.uncompressed/skills/nextjs-patterns/SKILL.md",
|
|
192
|
+
"packages/pack-nextjs/.agent-src.uncompressed/skills/project-analysis-nextjs/SKILL.md"
|
|
193
|
+
],
|
|
194
|
+
"id": "nextjs"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"artefact_count": 1,
|
|
198
|
+
"artefacts": [
|
|
199
|
+
"packages/pack-python/.agent-src.uncompressed/skills/async-python-patterns/SKILL.md"
|
|
200
|
+
],
|
|
201
|
+
"id": "python"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"artefact_count": 15,
|
|
207
|
+
"default_packs": [
|
|
208
|
+
"product-basic"
|
|
209
|
+
],
|
|
210
|
+
"description": "Discovery, roadmaps, prioritisation, AC tightening.",
|
|
211
|
+
"id": "product",
|
|
212
|
+
"label": "Product",
|
|
213
|
+
"optional_packs": [
|
|
214
|
+
"product-discovery"
|
|
215
|
+
],
|
|
216
|
+
"packs": [
|
|
217
|
+
{
|
|
218
|
+
"artefact_count": 11,
|
|
219
|
+
"artefacts": [
|
|
220
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/churn-prevention/SKILL.md",
|
|
221
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/estimate-ticket/SKILL.md",
|
|
222
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/feature-planning/SKILL.md",
|
|
223
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/funnel-analysis/SKILL.md",
|
|
224
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/onboarding-design/SKILL.md",
|
|
225
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/po-discovery/SKILL.md",
|
|
226
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/refine-ticket/SKILL.md",
|
|
227
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/retention-loops/SKILL.md",
|
|
228
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/rice-prioritization/SKILL.md",
|
|
229
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/stakeholder-tradeoff/SKILL.md",
|
|
230
|
+
"packages/pack-product-basic/.agent-src.uncompressed/skills/technical-specification/SKILL.md"
|
|
231
|
+
],
|
|
232
|
+
"id": "product-basic"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"artefact_count": 4,
|
|
236
|
+
"artefacts": [
|
|
237
|
+
"packages/pack-product-discovery/.agent-src.uncompressed/skills/activation-design/SKILL.md",
|
|
238
|
+
"packages/pack-product-discovery/.agent-src.uncompressed/skills/customer-research/SKILL.md",
|
|
239
|
+
"packages/pack-product-discovery/.agent-src.uncompressed/skills/discovery-interview/SKILL.md",
|
|
240
|
+
"packages/pack-product-discovery/.agent-src.uncompressed/skills/voc-extract/SKILL.md"
|
|
241
|
+
],
|
|
242
|
+
"id": "product-discovery"
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"artefact_count": 6,
|
|
248
|
+
"default_packs": [
|
|
249
|
+
"finance-basic"
|
|
250
|
+
],
|
|
251
|
+
"description": "Cashflow, forecasting, DCF, board reporting.",
|
|
252
|
+
"id": "finance",
|
|
253
|
+
"label": "Finance / CFO",
|
|
254
|
+
"optional_packs": [
|
|
255
|
+
"finance-advanced"
|
|
256
|
+
],
|
|
257
|
+
"packs": [
|
|
258
|
+
{
|
|
259
|
+
"artefact_count": 4,
|
|
260
|
+
"artefacts": [
|
|
261
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/rules/finance-safety-floor.md",
|
|
262
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
263
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
264
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md"
|
|
265
|
+
],
|
|
266
|
+
"id": "finance-basic"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"artefact_count": 3,
|
|
270
|
+
"artefacts": [
|
|
271
|
+
"packages/pack-finance-advanced/.agent-src.uncompressed/skills/dcf-modeling/SKILL.md",
|
|
272
|
+
"packages/pack-finance-advanced/.agent-src.uncompressed/skills/scenario-modeling/SKILL.md",
|
|
273
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/rules/finance-safety-floor.md"
|
|
274
|
+
],
|
|
275
|
+
"id": "finance-advanced"
|
|
276
|
+
}
|
|
277
|
+
]
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"artefact_count": 20,
|
|
281
|
+
"default_packs": [
|
|
282
|
+
"founder-strategy"
|
|
283
|
+
],
|
|
284
|
+
"description": "Strategy, fundraising, vision, board narrative.",
|
|
285
|
+
"id": "founder",
|
|
286
|
+
"label": "Founder",
|
|
287
|
+
"optional_packs": [
|
|
288
|
+
"finance-basic",
|
|
289
|
+
"gtm-marketing"
|
|
290
|
+
],
|
|
291
|
+
"packs": [
|
|
292
|
+
{
|
|
293
|
+
"artefact_count": 8,
|
|
294
|
+
"artefacts": [
|
|
295
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/rules/strategy-safety-floor.md",
|
|
296
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/build-buy-partner/SKILL.md",
|
|
297
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/competitive-moat-analysis/SKILL.md",
|
|
298
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/fundraising-narrative/SKILL.md",
|
|
299
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/launch-readiness/SKILL.md",
|
|
300
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/market-entry-analysis/SKILL.md",
|
|
301
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/okr-tree-modeling/SKILL.md",
|
|
302
|
+
"packages/pack-founder-strategy/.agent-src.uncompressed/skills/vision-articulation/SKILL.md"
|
|
303
|
+
],
|
|
304
|
+
"id": "founder-strategy"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"artefact_count": 4,
|
|
308
|
+
"artefacts": [
|
|
309
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/rules/finance-safety-floor.md",
|
|
310
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/forecasting/SKILL.md",
|
|
311
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/runway-cognition/SKILL.md",
|
|
312
|
+
"packages/pack-finance-basic/.agent-src.uncompressed/skills/unit-economics-modeling/SKILL.md"
|
|
313
|
+
],
|
|
314
|
+
"id": "finance-basic"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"artefact_count": 8,
|
|
318
|
+
"artefacts": [
|
|
319
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
320
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
321
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
322
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
323
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
324
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
325
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
326
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md"
|
|
327
|
+
],
|
|
328
|
+
"id": "gtm-marketing"
|
|
329
|
+
}
|
|
330
|
+
]
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"artefact_count": 12,
|
|
334
|
+
"default_packs": [
|
|
335
|
+
"gtm-sales",
|
|
336
|
+
"gtm-marketing"
|
|
337
|
+
],
|
|
338
|
+
"description": "Sales pipeline, marketing, positioning, launch.",
|
|
339
|
+
"id": "gtm",
|
|
340
|
+
"label": "Go-to-Market",
|
|
341
|
+
"optional_packs": [],
|
|
342
|
+
"packs": [
|
|
343
|
+
{
|
|
344
|
+
"artefact_count": 4,
|
|
345
|
+
"artefacts": [
|
|
346
|
+
"packages/pack-gtm-sales/.agent-src.uncompressed/skills/deal-qualification-meddic/SKILL.md",
|
|
347
|
+
"packages/pack-gtm-sales/.agent-src.uncompressed/skills/expansion-playbook/SKILL.md",
|
|
348
|
+
"packages/pack-gtm-sales/.agent-src.uncompressed/skills/forecast-accuracy/SKILL.md",
|
|
349
|
+
"packages/pack-gtm-sales/.agent-src.uncompressed/skills/pipeline-strategy/SKILL.md"
|
|
350
|
+
],
|
|
351
|
+
"id": "gtm-sales"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"artefact_count": 8,
|
|
355
|
+
"artefacts": [
|
|
356
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/competitive-positioning/SKILL.md",
|
|
357
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/content-funnel-design/SKILL.md",
|
|
358
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/editorial-calendar/SKILL.md",
|
|
359
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/gtm-launch/SKILL.md",
|
|
360
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/messaging-architecture/SKILL.md",
|
|
361
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/positioning-strategy/SKILL.md",
|
|
362
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/release-comms/SKILL.md",
|
|
363
|
+
"packages/pack-gtm-marketing/.agent-src.uncompressed/skills/voice-and-tone-design/SKILL.md"
|
|
364
|
+
],
|
|
365
|
+
"id": "gtm-marketing"
|
|
366
|
+
}
|
|
367
|
+
]
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"artefact_count": 8,
|
|
371
|
+
"default_packs": [
|
|
372
|
+
"ops-people"
|
|
373
|
+
],
|
|
374
|
+
"description": "Hiring, comp, perf, org design, runbooks.",
|
|
375
|
+
"id": "ops",
|
|
376
|
+
"label": "Operations",
|
|
377
|
+
"optional_packs": [],
|
|
378
|
+
"packs": [
|
|
379
|
+
{
|
|
380
|
+
"artefact_count": 8,
|
|
381
|
+
"artefacts": [
|
|
382
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/comp-banding/SKILL.md",
|
|
383
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/contracts-cognition/SKILL.md",
|
|
384
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/hiring-loop-design/SKILL.md",
|
|
385
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/onboarding-program/SKILL.md",
|
|
386
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/one-on-one-cadence/SKILL.md",
|
|
387
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/org-design/SKILL.md",
|
|
388
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/perf-feedback-craft/SKILL.md",
|
|
389
|
+
"packages/pack-ops-people/.agent-src.uncompressed/skills/throughput-vs-morale-tradeoff/SKILL.md"
|
|
390
|
+
],
|
|
391
|
+
"id": "ops-people"
|
|
392
|
+
}
|
|
393
|
+
]
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"artefact_count": 6,
|
|
397
|
+
"default_packs": [
|
|
398
|
+
"small-business"
|
|
399
|
+
],
|
|
400
|
+
"description": "Self-employed / SMB-shaped owner workflows.",
|
|
401
|
+
"id": "small-business",
|
|
402
|
+
"label": "Small Business",
|
|
403
|
+
"optional_packs": [
|
|
404
|
+
"ai-video"
|
|
405
|
+
],
|
|
406
|
+
"packs": [
|
|
407
|
+
{
|
|
408
|
+
"artefact_count": 0,
|
|
409
|
+
"artefacts": [],
|
|
410
|
+
"id": "small-business"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"artefact_count": 6,
|
|
414
|
+
"artefacts": [
|
|
415
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/canvas-design/SKILL.md",
|
|
416
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/character-consistency/SKILL.md",
|
|
417
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/motion-choreographer/SKILL.md",
|
|
418
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/pixar-storyteller/SKILL.md",
|
|
419
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/scene-expander/SKILL.md",
|
|
420
|
+
"packages/pack-ai-video/.agent-src.uncompressed/skills/video-director/SKILL.md"
|
|
421
|
+
],
|
|
422
|
+
"id": "ai-video"
|
|
423
|
+
}
|
|
424
|
+
]
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"artefact_count": 0,
|
|
428
|
+
"default_packs": [
|
|
429
|
+
"construction"
|
|
430
|
+
],
|
|
431
|
+
"description": "Trade-business workflows (planning, quotes).",
|
|
432
|
+
"id": "construction",
|
|
433
|
+
"label": "Construction",
|
|
434
|
+
"optional_packs": [],
|
|
435
|
+
"packs": [
|
|
436
|
+
{
|
|
437
|
+
"artefact_count": 0,
|
|
438
|
+
"artefacts": [],
|
|
439
|
+
"id": "construction"
|
|
440
|
+
}
|
|
441
|
+
]
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"artefact_count": 243,
|
|
445
|
+
"default_packs": [
|
|
446
|
+
"meta"
|
|
447
|
+
],
|
|
448
|
+
"description": "Skills/rules/commands that maintain this package.",
|
|
449
|
+
"id": "agent-config-maintainer",
|
|
450
|
+
"label": "Maintainer",
|
|
451
|
+
"optional_packs": [],
|
|
452
|
+
"packs": [
|
|
453
|
+
{
|
|
454
|
+
"artefact_count": 243,
|
|
455
|
+
"artefacts": [
|
|
456
|
+
"packages/core/.agent-src.uncompressed/commands/agent-handoff.md",
|
|
457
|
+
"packages/core/.agent-src.uncompressed/commands/agent-status.md",
|
|
458
|
+
"packages/core/.agent-src.uncompressed/commands/agents.md",
|
|
459
|
+
"packages/core/.agent-src.uncompressed/commands/agents/audit.md",
|
|
460
|
+
"packages/core/.agent-src.uncompressed/commands/agents/init.md",
|
|
461
|
+
"packages/core/.agent-src.uncompressed/commands/agents/optimize.md",
|
|
462
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user.md",
|
|
463
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user/accept.md",
|
|
464
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user/init.md",
|
|
465
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user/review.md",
|
|
466
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user/show.md",
|
|
467
|
+
"packages/core/.agent-src.uncompressed/commands/agents/user/update.md",
|
|
468
|
+
"packages/core/.agent-src.uncompressed/commands/analyze-reference-repo.md",
|
|
469
|
+
"packages/core/.agent-src.uncompressed/commands/bug-fix.md",
|
|
470
|
+
"packages/core/.agent-src.uncompressed/commands/bug-investigate.md",
|
|
471
|
+
"packages/core/.agent-src.uncompressed/commands/challenge-me.md",
|
|
472
|
+
"packages/core/.agent-src.uncompressed/commands/challenge-me/vision.md",
|
|
473
|
+
"packages/core/.agent-src.uncompressed/commands/challenge-me/with-docs.md",
|
|
474
|
+
"packages/core/.agent-src.uncompressed/commands/chat-history.md",
|
|
475
|
+
"packages/core/.agent-src.uncompressed/commands/chat-history/import.md",
|
|
476
|
+
"packages/core/.agent-src.uncompressed/commands/chat-history/learn.md",
|
|
477
|
+
"packages/core/.agent-src.uncompressed/commands/chat-history/show.md",
|
|
478
|
+
"packages/core/.agent-src.uncompressed/commands/check-current-md.md",
|
|
479
|
+
"packages/core/.agent-src.uncompressed/commands/commit.md",
|
|
480
|
+
"packages/core/.agent-src.uncompressed/commands/commit/in-chunks.md",
|
|
481
|
+
"packages/core/.agent-src.uncompressed/commands/compress.md",
|
|
482
|
+
"packages/core/.agent-src.uncompressed/commands/context.md",
|
|
483
|
+
"packages/core/.agent-src.uncompressed/commands/context/create.md",
|
|
484
|
+
"packages/core/.agent-src.uncompressed/commands/context/refactor.md",
|
|
485
|
+
"packages/core/.agent-src.uncompressed/commands/cost-report.md",
|
|
486
|
+
"packages/core/.agent-src.uncompressed/commands/council.md",
|
|
487
|
+
"packages/core/.agent-src.uncompressed/commands/council/analysis.md",
|
|
488
|
+
"packages/core/.agent-src.uncompressed/commands/council/debate.md",
|
|
489
|
+
"packages/core/.agent-src.uncompressed/commands/council/default.md",
|
|
490
|
+
"packages/core/.agent-src.uncompressed/commands/council/design.md",
|
|
491
|
+
"packages/core/.agent-src.uncompressed/commands/council/optimize.md",
|
|
492
|
+
"packages/core/.agent-src.uncompressed/commands/council/pr.md",
|
|
493
|
+
"packages/core/.agent-src.uncompressed/commands/create-pr.md",
|
|
494
|
+
"packages/core/.agent-src.uncompressed/commands/create-pr/description-only.md",
|
|
495
|
+
"packages/core/.agent-src.uncompressed/commands/e2e-heal.md",
|
|
496
|
+
"packages/core/.agent-src.uncompressed/commands/e2e-plan.md",
|
|
497
|
+
"packages/core/.agent-src.uncompressed/commands/estimate-ticket.md",
|
|
498
|
+
"packages/core/.agent-src.uncompressed/commands/feature.md",
|
|
499
|
+
"packages/core/.agent-src.uncompressed/commands/feature/dev.md",
|
|
500
|
+
"packages/core/.agent-src.uncompressed/commands/feature/explore.md",
|
|
501
|
+
"packages/core/.agent-src.uncompressed/commands/feature/plan.md",
|
|
502
|
+
"packages/core/.agent-src.uncompressed/commands/feature/refactor.md",
|
|
503
|
+
"packages/core/.agent-src.uncompressed/commands/feature/roadmap.md",
|
|
504
|
+
"packages/core/.agent-src.uncompressed/commands/fix.md",
|
|
505
|
+
"packages/core/.agent-src.uncompressed/commands/fix/ci.md",
|
|
506
|
+
"packages/core/.agent-src.uncompressed/commands/fix/portability.md",
|
|
507
|
+
"packages/core/.agent-src.uncompressed/commands/fix/pr-bot-comments.md",
|
|
508
|
+
"packages/core/.agent-src.uncompressed/commands/fix/pr-comments.md",
|
|
509
|
+
"packages/core/.agent-src.uncompressed/commands/fix/pr-developer-comments.md",
|
|
510
|
+
"packages/core/.agent-src.uncompressed/commands/fix/refs.md",
|
|
511
|
+
"packages/core/.agent-src.uncompressed/commands/fix/seeder.md",
|
|
512
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter.md",
|
|
513
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter/delete.md",
|
|
514
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter/fetch.md",
|
|
515
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter/list.md",
|
|
516
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter/show.md",
|
|
517
|
+
"packages/core/.agent-src.uncompressed/commands/ghostwriter/write.md",
|
|
518
|
+
"packages/core/.agent-src.uncompressed/commands/grill-me.md",
|
|
519
|
+
"packages/core/.agent-src.uncompressed/commands/implement-ticket.md",
|
|
520
|
+
"packages/core/.agent-src.uncompressed/commands/install-via-agent.md",
|
|
521
|
+
"packages/core/.agent-src.uncompressed/commands/jira-ticket.md",
|
|
522
|
+
"packages/core/.agent-src.uncompressed/commands/judge.md",
|
|
523
|
+
"packages/core/.agent-src.uncompressed/commands/judge/on-diff.md",
|
|
524
|
+
"packages/core/.agent-src.uncompressed/commands/judge/solo.md",
|
|
525
|
+
"packages/core/.agent-src.uncompressed/commands/judge/steps.md",
|
|
526
|
+
"packages/core/.agent-src.uncompressed/commands/memory.md",
|
|
527
|
+
"packages/core/.agent-src.uncompressed/commands/memory/add.md",
|
|
528
|
+
"packages/core/.agent-src.uncompressed/commands/memory/learn-low-impact.md",
|
|
529
|
+
"packages/core/.agent-src.uncompressed/commands/memory/load.md",
|
|
530
|
+
"packages/core/.agent-src.uncompressed/commands/memory/mine-session.md",
|
|
531
|
+
"packages/core/.agent-src.uncompressed/commands/memory/promote.md",
|
|
532
|
+
"packages/core/.agent-src.uncompressed/commands/memory/propose.md",
|
|
533
|
+
"packages/core/.agent-src.uncompressed/commands/mode.md",
|
|
534
|
+
"packages/core/.agent-src.uncompressed/commands/module.md",
|
|
535
|
+
"packages/core/.agent-src.uncompressed/commands/module/create.md",
|
|
536
|
+
"packages/core/.agent-src.uncompressed/commands/module/explore.md",
|
|
537
|
+
"packages/core/.agent-src.uncompressed/commands/optimize-prompt.md",
|
|
538
|
+
"packages/core/.agent-src.uncompressed/commands/optimize.md",
|
|
539
|
+
"packages/core/.agent-src.uncompressed/commands/optimize/agents-dir.md",
|
|
540
|
+
"packages/core/.agent-src.uncompressed/commands/optimize/augmentignore.md",
|
|
541
|
+
"packages/core/.agent-src.uncompressed/commands/optimize/rtk.md",
|
|
542
|
+
"packages/core/.agent-src.uncompressed/commands/optimize/skills.md",
|
|
543
|
+
"packages/core/.agent-src.uncompressed/commands/orchestrate.md",
|
|
544
|
+
"packages/core/.agent-src.uncompressed/commands/override.md",
|
|
545
|
+
"packages/core/.agent-src.uncompressed/commands/override/create.md",
|
|
546
|
+
"packages/core/.agent-src.uncompressed/commands/override/manage.md",
|
|
547
|
+
"packages/core/.agent-src.uncompressed/commands/package-reset.md",
|
|
548
|
+
"packages/core/.agent-src.uncompressed/commands/package-test.md",
|
|
549
|
+
"packages/core/.agent-src.uncompressed/commands/post-as.md",
|
|
550
|
+
"packages/core/.agent-src.uncompressed/commands/post-as/ghostwriter.md",
|
|
551
|
+
"packages/core/.agent-src.uncompressed/commands/post-as/me.md",
|
|
552
|
+
"packages/core/.agent-src.uncompressed/commands/prepare-for-review.md",
|
|
553
|
+
"packages/core/.agent-src.uncompressed/commands/project-analyze.md",
|
|
554
|
+
"packages/core/.agent-src.uncompressed/commands/project-health.md",
|
|
555
|
+
"packages/core/.agent-src.uncompressed/commands/quality-fix.md",
|
|
556
|
+
"packages/core/.agent-src.uncompressed/commands/refine-ticket.md",
|
|
557
|
+
"packages/core/.agent-src.uncompressed/commands/research.md",
|
|
558
|
+
"packages/core/.agent-src.uncompressed/commands/research/deep.md",
|
|
559
|
+
"packages/core/.agent-src.uncompressed/commands/research/report.md",
|
|
560
|
+
"packages/core/.agent-src.uncompressed/commands/review-changes.md",
|
|
561
|
+
"packages/core/.agent-src.uncompressed/commands/review-routing.md",
|
|
562
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap.md",
|
|
563
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap/ai-council.md",
|
|
564
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap/create.md",
|
|
565
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap/process-full.md",
|
|
566
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap/process-phase.md",
|
|
567
|
+
"packages/core/.agent-src.uncompressed/commands/roadmap/process-step.md",
|
|
568
|
+
"packages/core/.agent-src.uncompressed/commands/rule-compliance-audit.md",
|
|
569
|
+
"packages/core/.agent-src.uncompressed/commands/set-cost-profile.md",
|
|
570
|
+
"packages/core/.agent-src.uncompressed/commands/sync-agent-settings.md",
|
|
571
|
+
"packages/core/.agent-src.uncompressed/commands/sync-gitignore.md",
|
|
572
|
+
"packages/core/.agent-src.uncompressed/commands/sync-gitignore/fix.md",
|
|
573
|
+
"packages/core/.agent-src.uncompressed/commands/tests.md",
|
|
574
|
+
"packages/core/.agent-src.uncompressed/commands/tests/create.md",
|
|
575
|
+
"packages/core/.agent-src.uncompressed/commands/tests/execute.md",
|
|
576
|
+
"packages/core/.agent-src.uncompressed/commands/threat-model.md",
|
|
577
|
+
"packages/core/.agent-src.uncompressed/commands/update-form-request-messages.md",
|
|
578
|
+
"packages/core/.agent-src.uncompressed/commands/upstream-contribute.md",
|
|
579
|
+
"packages/core/.agent-src.uncompressed/commands/video.md",
|
|
580
|
+
"packages/core/.agent-src.uncompressed/commands/video/from-script.md",
|
|
581
|
+
"packages/core/.agent-src.uncompressed/commands/video/scene.md",
|
|
582
|
+
"packages/core/.agent-src.uncompressed/commands/video/stitch.md",
|
|
583
|
+
"packages/core/.agent-src.uncompressed/commands/video/storyboard.md",
|
|
584
|
+
"packages/core/.agent-src.uncompressed/commands/work.md",
|
|
585
|
+
"packages/core/.agent-src.uncompressed/rules/agent-authority.md",
|
|
586
|
+
"packages/core/.agent-src.uncompressed/rules/analysis-skill-routing.md",
|
|
587
|
+
"packages/core/.agent-src.uncompressed/rules/architecture.md",
|
|
588
|
+
"packages/core/.agent-src.uncompressed/rules/artifact-drafting-protocol.md",
|
|
589
|
+
"packages/core/.agent-src.uncompressed/rules/artifact-engagement-recording.md",
|
|
590
|
+
"packages/core/.agent-src.uncompressed/rules/ask-when-uncertain.md",
|
|
591
|
+
"packages/core/.agent-src.uncompressed/rules/augment-edit-discipline.md",
|
|
592
|
+
"packages/core/.agent-src.uncompressed/rules/augment-source-of-truth.md",
|
|
593
|
+
"packages/core/.agent-src.uncompressed/rules/autonomous-execution.md",
|
|
594
|
+
"packages/core/.agent-src.uncompressed/rules/caveman-speak.md",
|
|
595
|
+
"packages/core/.agent-src.uncompressed/rules/cli-output-handling.md",
|
|
596
|
+
"packages/core/.agent-src.uncompressed/rules/command-suggestion-policy.md",
|
|
597
|
+
"packages/core/.agent-src.uncompressed/rules/context-hygiene.md",
|
|
598
|
+
"packages/core/.agent-src.uncompressed/rules/copilot-routing.md",
|
|
599
|
+
"packages/core/.agent-src.uncompressed/rules/devcontainer-routing.md",
|
|
600
|
+
"packages/core/.agent-src.uncompressed/rules/direct-answers.md",
|
|
601
|
+
"packages/core/.agent-src.uncompressed/rules/domain-adoption-policy.md",
|
|
602
|
+
"packages/core/.agent-src.uncompressed/rules/domain-safety-disclaimer.md",
|
|
603
|
+
"packages/core/.agent-src.uncompressed/rules/domain-safety-pii.md",
|
|
604
|
+
"packages/core/.agent-src.uncompressed/rules/domain-safety-retention.md",
|
|
605
|
+
"packages/core/.agent-src.uncompressed/rules/external-reference-deep-dive.md",
|
|
606
|
+
"packages/core/.agent-src.uncompressed/rules/fast-path-marker-visibility.md",
|
|
607
|
+
"packages/core/.agent-src.uncompressed/rules/framework-neutrality-in-generic-skills.md",
|
|
608
|
+
"packages/core/.agent-src.uncompressed/rules/guidelines.md",
|
|
609
|
+
"packages/core/.agent-src.uncompressed/rules/invite-challenge.md",
|
|
610
|
+
"packages/core/.agent-src.uncompressed/rules/language-and-tone.md",
|
|
611
|
+
"packages/core/.agent-src.uncompressed/rules/low-impact-corpus-privacy-floor.md",
|
|
612
|
+
"packages/core/.agent-src.uncompressed/rules/markdown-safe-codeblocks.md",
|
|
613
|
+
"packages/core/.agent-src.uncompressed/rules/media-governance-routing.md",
|
|
614
|
+
"packages/core/.agent-src.uncompressed/rules/missing-tool-handling.md",
|
|
615
|
+
"packages/core/.agent-src.uncompressed/rules/model-recommendation.md",
|
|
616
|
+
"packages/core/.agent-src.uncompressed/rules/no-attribution-footers.md",
|
|
617
|
+
"packages/core/.agent-src.uncompressed/rules/no-cheap-questions.md",
|
|
618
|
+
"packages/core/.agent-src.uncompressed/rules/no-roadmap-references.md",
|
|
619
|
+
"packages/core/.agent-src.uncompressed/rules/onboarding-gate.md",
|
|
620
|
+
"packages/core/.agent-src.uncompressed/rules/package-ci-checks.md",
|
|
621
|
+
"packages/core/.agent-src.uncompressed/rules/persona-governance.md",
|
|
622
|
+
"packages/core/.agent-src.uncompressed/rules/preservation-guard.md",
|
|
623
|
+
"packages/core/.agent-src.uncompressed/rules/provider-lifecycle-discipline.md",
|
|
624
|
+
"packages/core/.agent-src.uncompressed/rules/reviewer-awareness.md",
|
|
625
|
+
"packages/core/.agent-src.uncompressed/rules/roadmap-ci-steps-policy.md",
|
|
626
|
+
"packages/core/.agent-src.uncompressed/rules/roadmap-progress-sync.md",
|
|
627
|
+
"packages/core/.agent-src.uncompressed/rules/role-mode-adherence.md",
|
|
628
|
+
"packages/core/.agent-src.uncompressed/rules/rule-type-governance.md",
|
|
629
|
+
"packages/core/.agent-src.uncompressed/rules/runtime-safety.md",
|
|
630
|
+
"packages/core/.agent-src.uncompressed/rules/size-enforcement.md",
|
|
631
|
+
"packages/core/.agent-src.uncompressed/rules/skill-improvement-trigger.md",
|
|
632
|
+
"packages/core/.agent-src.uncompressed/rules/skill-quality.md",
|
|
633
|
+
"packages/core/.agent-src.uncompressed/rules/slash-command-routing-policy.md",
|
|
634
|
+
"packages/core/.agent-src.uncompressed/rules/token-efficiency.md",
|
|
635
|
+
"packages/core/.agent-src.uncompressed/rules/token-optimizer-maintenance.md",
|
|
636
|
+
"packages/core/.agent-src.uncompressed/rules/tool-safety.md",
|
|
637
|
+
"packages/core/.agent-src.uncompressed/rules/ui-audit-gate.md",
|
|
638
|
+
"packages/core/.agent-src.uncompressed/rules/upstream-proposal.md",
|
|
639
|
+
"packages/core/.agent-src.uncompressed/rules/user-interaction.md",
|
|
640
|
+
"packages/core/.agent-src.uncompressed/rules/user-interrupt-priority.md",
|
|
641
|
+
"packages/core/.agent-src.uncompressed/skills/adr-create/SKILL.md",
|
|
642
|
+
"packages/core/.agent-src.uncompressed/skills/agent-docs-writing/SKILL.md",
|
|
643
|
+
"packages/core/.agent-src.uncompressed/skills/agents-md-thin-root/SKILL.md",
|
|
644
|
+
"packages/core/.agent-src.uncompressed/skills/ai-council/SKILL.md",
|
|
645
|
+
"packages/core/.agent-src.uncompressed/skills/analysis-autonomous-mode/SKILL.md",
|
|
646
|
+
"packages/core/.agent-src.uncompressed/skills/analysis-skill-router/SKILL.md",
|
|
647
|
+
"packages/core/.agent-src.uncompressed/skills/check-refs/SKILL.md",
|
|
648
|
+
"packages/core/.agent-src.uncompressed/skills/command-routing/SKILL.md",
|
|
649
|
+
"packages/core/.agent-src.uncompressed/skills/command-writing/SKILL.md",
|
|
650
|
+
"packages/core/.agent-src.uncompressed/skills/compress-memory/SKILL.md",
|
|
651
|
+
"packages/core/.agent-src.uncompressed/skills/context-authoring/SKILL.md",
|
|
652
|
+
"packages/core/.agent-src.uncompressed/skills/context-document/SKILL.md",
|
|
653
|
+
"packages/core/.agent-src.uncompressed/skills/copilot-agents-optimization/SKILL.md",
|
|
654
|
+
"packages/core/.agent-src.uncompressed/skills/copilot-config/SKILL.md",
|
|
655
|
+
"packages/core/.agent-src.uncompressed/skills/decision-record/SKILL.md",
|
|
656
|
+
"packages/core/.agent-src.uncompressed/skills/description-assist/SKILL.md",
|
|
657
|
+
"packages/core/.agent-src.uncompressed/skills/doc-coauthoring/SKILL.md",
|
|
658
|
+
"packages/core/.agent-src.uncompressed/skills/file-editor/SKILL.md",
|
|
659
|
+
"packages/core/.agent-src.uncompressed/skills/guideline-writing/SKILL.md",
|
|
660
|
+
"packages/core/.agent-src.uncompressed/skills/jira-integration/SKILL.md",
|
|
661
|
+
"packages/core/.agent-src.uncompressed/skills/judge-bug-hunter/SKILL.md",
|
|
662
|
+
"packages/core/.agent-src.uncompressed/skills/judge-code-quality/SKILL.md",
|
|
663
|
+
"packages/core/.agent-src.uncompressed/skills/judge-security-auditor/SKILL.md",
|
|
664
|
+
"packages/core/.agent-src.uncompressed/skills/judge-test-coverage/SKILL.md",
|
|
665
|
+
"packages/core/.agent-src.uncompressed/skills/learning-to-rule-or-skill/SKILL.md",
|
|
666
|
+
"packages/core/.agent-src.uncompressed/skills/lint-skills/SKILL.md",
|
|
667
|
+
"packages/core/.agent-src.uncompressed/skills/markitdown/SKILL.md",
|
|
668
|
+
"packages/core/.agent-src.uncompressed/skills/mcp-builder/SKILL.md",
|
|
669
|
+
"packages/core/.agent-src.uncompressed/skills/mcp/SKILL.md",
|
|
670
|
+
"packages/core/.agent-src.uncompressed/skills/md-language-check/SKILL.md",
|
|
671
|
+
"packages/core/.agent-src.uncompressed/skills/memory-consolidation/SKILL.md",
|
|
672
|
+
"packages/core/.agent-src.uncompressed/skills/module-management/SKILL.md",
|
|
673
|
+
"packages/core/.agent-src.uncompressed/skills/override-management/SKILL.md",
|
|
674
|
+
"packages/core/.agent-src.uncompressed/skills/persona-writing/SKILL.md",
|
|
675
|
+
"packages/core/.agent-src.uncompressed/skills/project-docs/SKILL.md",
|
|
676
|
+
"packages/core/.agent-src.uncompressed/skills/prompt-engineering-patterns/SKILL.md",
|
|
677
|
+
"packages/core/.agent-src.uncompressed/skills/prompt-optimizer/SKILL.md",
|
|
678
|
+
"packages/core/.agent-src.uncompressed/skills/readme-reviewer/SKILL.md",
|
|
679
|
+
"packages/core/.agent-src.uncompressed/skills/readme-writing-package/SKILL.md",
|
|
680
|
+
"packages/core/.agent-src.uncompressed/skills/readme-writing/SKILL.md",
|
|
681
|
+
"packages/core/.agent-src.uncompressed/skills/refine-prompt/SKILL.md",
|
|
682
|
+
"packages/core/.agent-src.uncompressed/skills/repomix-packer/SKILL.md",
|
|
683
|
+
"packages/core/.agent-src.uncompressed/skills/review-routing/SKILL.md",
|
|
684
|
+
"packages/core/.agent-src.uncompressed/skills/roadmap-management/SKILL.md",
|
|
685
|
+
"packages/core/.agent-src.uncompressed/skills/roadmap-writing/SKILL.md",
|
|
686
|
+
"packages/core/.agent-src.uncompressed/skills/rtk-output-filtering/SKILL.md",
|
|
687
|
+
"packages/core/.agent-src.uncompressed/skills/rule-refactor/SKILL.md",
|
|
688
|
+
"packages/core/.agent-src.uncompressed/skills/rule-writing/SKILL.md",
|
|
689
|
+
"packages/core/.agent-src.uncompressed/skills/script-writing/SKILL.md",
|
|
690
|
+
"packages/core/.agent-src.uncompressed/skills/sequential-thinking/SKILL.md",
|
|
691
|
+
"packages/core/.agent-src.uncompressed/skills/skill-improvement-pipeline/SKILL.md",
|
|
692
|
+
"packages/core/.agent-src.uncompressed/skills/skill-management/SKILL.md",
|
|
693
|
+
"packages/core/.agent-src.uncompressed/skills/skill-reviewer/SKILL.md",
|
|
694
|
+
"packages/core/.agent-src.uncompressed/skills/skill-writing/SKILL.md",
|
|
695
|
+
"packages/core/.agent-src.uncompressed/skills/subagent-orchestration/SKILL.md",
|
|
696
|
+
"packages/core/.agent-src.uncompressed/skills/token-optimizer/SKILL.md",
|
|
697
|
+
"packages/core/.agent-src.uncompressed/skills/upstream-contribute/SKILL.md",
|
|
698
|
+
"packages/core/.agent-src.uncompressed/templates/agents/proposal.example.md"
|
|
699
|
+
],
|
|
700
|
+
"id": "meta"
|
|
701
|
+
}
|
|
702
|
+
]
|
|
703
|
+
}
|
|
704
|
+
]
|
|
705
|
+
}
|