f2g-telco 0.1.9 → 0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "f2g-telco",
3
- "version": "0.1.9",
3
+ "version": "0.2.0",
4
4
  "description": "CLI tool to supercharge AI coding environments — installs MCPs, skills, agents, and memory pipelines",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0",
2
+ "version": "1.1.0",
3
3
  "tools": [
4
4
  {
5
5
  "id": "f2g-telco",
@@ -44,6 +44,14 @@
44
44
  "description": "Semantic code search — BM25 + vector + cross-encoder reranking, 64 languages, call graphs, dead code detection. Local ONNX models, no API keys. MCP server built-in.",
45
45
  "install": "npm install -g @vera-ai/cli && vera setup --yes",
46
46
  "location": "~/.local/bin/vera"
47
+ },
48
+ {
49
+ "id": "markplane",
50
+ "name": "markplane",
51
+ "version": "0.1.2",
52
+ "description": "Repo-level project management as markdown in git — tasks, epics, plans, notes + web UI + MCP server",
53
+ "install": "curl -fsSL https://raw.githubusercontent.com/zerowand01/markplane/master/install.sh | sh",
54
+ "location": "~/.local/bin/markplane"
47
55
  }
48
56
  ]
49
57
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.0",
2
+ "version": "1.5.0",
3
3
  "mcps": [
4
4
  {
5
5
  "id": "mem0",
@@ -222,6 +222,40 @@
222
222
  "category": "dev",
223
223
  "free": true,
224
224
  "autoApprove": ["index_project", "search_code", "regex_search", "get_overview", "get_stats", "find_references", "find_dead_code", "update_project", "watch_project"]
225
+ },
226
+ {
227
+ "id": "youtrack",
228
+ "name": "youtrack-mcp",
229
+ "description": "YouTrack project management — issues, comments, state/priority/assignee updates. Set NODE_ENV=production to suppress stdout logs.",
230
+ "install": "npm install -g youtrack-mcp",
231
+ "command": "node",
232
+ "args": ["/usr/lib/node_modules/youtrack-mcp/dist/index.js"],
233
+ "requiresEnv": ["YOUTRACK_URL", "YOUTRACK_TOKEN"],
234
+ "envSetup": "Get token at https://<your-instance>.youtrack.cloud/users/me → Authentication → New Token",
235
+ "setupSteps": [
236
+ "Go to: https://<your-instance>.youtrack.cloud/users/me",
237
+ "Click 'Authentication' tab",
238
+ "Click 'New token...'",
239
+ "Select scope: YouTrack (full access)",
240
+ "Copy the token and paste below"
241
+ ],
242
+ "env": { "NODE_ENV": "production" },
243
+ "category": "project-management",
244
+ "free": true,
245
+ "autoApprove": ["query_issues", "create_issue", "update_issue", "get_issue_comments", "add_issue_comment", "get_project_status", "get_project_issues_summary", "get_project_timeline", "bulk_update_issues", "search_users"]
246
+ },
247
+ {
248
+ "id": "markplane",
249
+ "name": "markplane",
250
+ "description": "Repo-level project management as markdown — tasks, epics, plans, notes. Token-efficient .context/ summaries.",
251
+ "install": "curl -fsSL https://raw.githubusercontent.com/zerowand01/markplane/master/install.sh | sh",
252
+ "command": "markplane",
253
+ "args": ["mcp", "--project", "."],
254
+ "requiresEnv": [],
255
+ "category": "project-management",
256
+ "free": true,
257
+ "binary": true,
258
+ "autoApprove": ["markplane_summary", "markplane_query", "markplane_show", "markplane_add", "markplane_update", "markplane_move", "markplane_archive", "markplane_unarchive", "markplane_link", "markplane_graph", "markplane_plan", "markplane_promote", "markplane_check", "markplane_context", "markplane_sync"]
225
259
  }
226
260
  ]
227
261
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.0",
2
+ "version": "1.4.0",
3
3
  "sources": [
4
4
  {
5
5
  "id": "awesome-copilot",
@@ -74,6 +74,15 @@
74
74
  "path": "~/.agents/skills/ai-agent-stack/",
75
75
  "license": "MIT",
76
76
  "picks": null
77
+ },
78
+ {
79
+ "id": "harness",
80
+ "name": "Harness",
81
+ "description": "Meta-skill that generates agent teams + skills with 6 architecture patterns: Pipeline, Fan-out/Fan-in, Expert Pool, Producer-Reviewer, Supervisor, Hierarchical Delegation",
82
+ "repo": "revfactory/harness",
83
+ "path": "~/.agents/skills/harness/",
84
+ "license": "Apache-2.0",
85
+ "picks": null
77
86
  }
78
87
  ]
79
88
  }