Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit b4d5288

Browse files
committed
flask skill creation
1 parent 2570224 commit b4d5288

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

scripts/build-examples-mcp-resources.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,27 @@ const defaultConfig = {
204204
regex: [],
205205
},
206206
plugins: [],
207+
},
208+
{
209+
path: 'basics/flask',
210+
id: 'flask',
211+
displayName: 'Flask',
212+
tags: ['flask', 'python', 'server-side'],
213+
skipPatterns: {
214+
includes: [
215+
'__pycache__',
216+
'.pyc',
217+
'.pyo',
218+
'.pyd',
219+
'.env',
220+
'.db',
221+
'.venv',
222+
'venv',
223+
'instance',
224+
],
225+
regex: [],
226+
},
227+
plugins: [],
207228
}
208229
],
209230
globalSkipPatterns: {

transformation-config/skills.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ skills:
7070
docs_urls:
7171
- https://posthog.com/docs/libraries/django.md
7272

73+
- id: flask
74+
type: example
75+
example_path: basics/flask
76+
display_name: Flask
77+
description: PostHog integration for Flask applications
78+
tags: [flask, python]
79+
docs_urls:
80+
- https://posthog.com/docs/libraries/flask.md
81+
7382
# Guide-only skills (docs without example code)
7483
# - id: identify-users
7584
# type: guide

transformation-config/skip-patterns.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ global:
6363
- .venv
6464
- __pycache__
6565
- .pyc
66+
- .pyo
67+
- .pyd
6668
- .egg-info
6769
- .eggs
6870
- .pytest_cache
@@ -75,6 +77,10 @@ global:
7577
- pip-log.txt
7678
- .Python
7779

80+
# Flask
81+
- instance
82+
- .db
83+
7884
# Regex patterns - skip if path matches
7985
# Note: Patterns are JavaScript regex syntax
8086
regex:

0 commit comments

Comments
 (0)