@comfanion/workflow 4.28.0 → 4.29.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/workflow",
3
- "version": "4.28.0",
3
+ "version": "4.29.0",
4
4
  "description": "Initialize OpenCode Workflow system for AI-assisted development with semantic code search",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "3.0.0",
3
- "buildDate": "2026-01-24T11:37:39.734Z",
3
+ "buildDate": "2026-01-24T11:39:28.049Z",
4
4
  "files": [
5
5
  "config.yaml",
6
6
  "FLOW.yaml",
@@ -86,6 +86,8 @@ async function processPendingFiles(projectRoot: string): Promise<void> {
86
86
  export const FileIndexerPlugin: Plugin = async ({ directory }) => {
87
87
  let processingTimeout: NodeJS.Timeout | null = null
88
88
 
89
+ console.log(`[file-indexer] 🚀 Plugin loaded`)
90
+
89
91
  function queueFileForIndexing(filePath: string): void {
90
92
  const relativePath = path.relative(directory, filePath)
91
93
 
@@ -103,6 +105,7 @@ export const FileIndexerPlugin: Plugin = async ({ directory }) => {
103
105
  const indexName = getIndexForFile(filePath)
104
106
  if (!indexName) return
105
107
 
108
+ console.log(`[file-indexer] 📝 Queued: ${relativePath}`)
106
109
  pendingFiles.set(filePath, { indexName, timestamp: Date.now() })
107
110
 
108
111
  if (processingTimeout) {