Added Claude Skills

This commit is contained in:
2026-03-20 15:14:21 +08:00
parent a39e33bc6b
commit 27ebb89052
30 changed files with 7222 additions and 2 deletions
@@ -0,0 +1,5 @@
#!/usr/bin/env python3
"""Flutter widget analyzer."""
import json
def analyze(): return {"categories": ["stateless", "stateful", "inherited", "render"], "layouts": ["flex", "stack", "custom"]}
if __name__ == "__main__": print(json.dumps(analyze(), indent=2))