faf-mcp 1.2.0 → 1.2.2
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/CHANGELOG.md +11 -0
- package/README.md +1 -1
- package/dist/src/faf-core/compiler/faf-compiler.js +616 -107
- package/dist/src/faf-core/compiler/faf-compiler.js.map +1 -1
- package/dist/src/index.js +0 -0
- package/package.json +3 -1
- package/project.faf +3 -3
- package/scripts/postinstall.js +4 -0
- package/scripts/sync-version.js +35 -0
- package/.faf +0 -10
- package/dist/index.json +0 -1
- package/dist/src/compiler/index.d.ts +0 -7
- package/dist/src/compiler/index.js +0 -24
- package/dist/src/compiler/index.js.map +0 -1
- package/dist/src/compiler/scorer.d.ts +0 -53
- package/dist/src/compiler/scorer.js +0 -189
- package/dist/src/compiler/scorer.js.map +0 -1
- package/dist/src/compiler/slot-validator.d.ts +0 -32
- package/dist/src/compiler/slot-validator.js +0 -293
- package/dist/src/compiler/slot-validator.js.map +0 -1
- package/dist/src/compiler/type-detector.d.ts +0 -62
- package/dist/src/compiler/type-detector.js +0 -388
- package/dist/src/compiler/type-detector.js.map +0 -1
- package/dist/src/types/project-types.d.ts +0 -22
- package/dist/src/types/project-types.js +0 -85
- package/dist/src/types/project-types.js.map +0 -1
- package/dist/src/types/slots.d.ts +0 -39
- package/dist/src/types/slots.js +0 -162
- package/dist/src/types/slots.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to faf-mcp will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.1] - 2025-12-22
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **TYPE_DEFINITIONS Scoring Parity** - Ported from claude-faf-mcp v3.3.7
|
|
12
|
+
- 94 project types + 38 aliases for accurate slot-based scoring
|
|
13
|
+
- Single source of truth for project type detection
|
|
14
|
+
- Ensures faf-mcp scoring matches faf-cli scoring exactly
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Scoring engine now uses TYPE_DEFINITIONS for slot applicability
|
|
18
|
+
|
|
8
19
|
## [1.2.0] - 2025-12-18
|
|
9
20
|
|
|
10
21
|
### Trophy Achievement
|
package/README.md
CHANGED
|
@@ -51,7 +51,7 @@ Install the FAF MCP server: npm install -g faf-mcp, then add this to my MCP conf
|
|
|
51
51
|
> **"README for the AI era"** — Google Gemini
|
|
52
52
|
|
|
53
53
|
<div align="center">
|
|
54
|
-
<img src="https://raw.githubusercontent.com/Wolfe-Jam/faf-mcp/main/
|
|
54
|
+
<img src="https://raw.githubusercontent.com/Wolfe-Jam/faf-mcp/main/assets/Project-faf-pckg-json-README.png" alt="project.faf file positioning" width="600" />
|
|
55
55
|
<p><em><strong>project.faf is to AI context what package.json is to dependencies</strong></em></p>
|
|
56
56
|
<p><em>Lives at the project root, between package.json and README.md</em></p>
|
|
57
57
|
</div>
|