intentkit 0.6.0.dev13__py3-none-any.whl → 0.6.0.dev14__py3-none-any.whl

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.

Potentially problematic release.


This version of intentkit might be problematic. Click here for more details.

Files changed (61) hide show
  1. intentkit/__init__.py +1 -1
  2. intentkit/core/engine.py +2 -1
  3. intentkit/core/node.py +3 -1
  4. intentkit/skills/base.py +37 -17
  5. intentkit/skills/cryptocompare/fetch_news.py +2 -2
  6. intentkit/skills/cryptocompare/fetch_price.py +2 -2
  7. intentkit/skills/cryptocompare/fetch_top_exchanges.py +2 -2
  8. intentkit/skills/cryptocompare/fetch_top_market_cap.py +2 -2
  9. intentkit/skills/cryptocompare/fetch_top_volume.py +2 -2
  10. intentkit/skills/cryptocompare/fetch_trading_signals.py +2 -2
  11. intentkit/skills/defillama/base.py +3 -3
  12. intentkit/skills/enso/base.py +2 -2
  13. intentkit/skills/enso/networks.py +1 -1
  14. intentkit/skills/enso/route.py +1 -1
  15. intentkit/skills/enso/tokens.py +1 -1
  16. intentkit/skills/firecrawl/clear.py +1 -1
  17. intentkit/skills/firecrawl/crawl.py +2 -10
  18. intentkit/skills/firecrawl/query.py +4 -4
  19. intentkit/skills/firecrawl/scrape.py +2 -8
  20. intentkit/skills/heurist/image_generation_animagine_xl.py +1 -1
  21. intentkit/skills/heurist/image_generation_arthemy_comics.py +1 -1
  22. intentkit/skills/heurist/image_generation_arthemy_real.py +1 -1
  23. intentkit/skills/heurist/image_generation_braindance.py +1 -1
  24. intentkit/skills/heurist/image_generation_cyber_realistic_xl.py +1 -1
  25. intentkit/skills/heurist/image_generation_flux_1_dev.py +1 -1
  26. intentkit/skills/heurist/image_generation_sdxl.py +1 -1
  27. intentkit/skills/lifi/token_execute.py +1 -1
  28. intentkit/skills/openai/dalle_image_generation.py +1 -1
  29. intentkit/skills/openai/gpt_image_generation.py +1 -1
  30. intentkit/skills/openai/gpt_image_to_image.py +1 -1
  31. intentkit/skills/supabase/__init__.py +116 -0
  32. intentkit/skills/supabase/base.py +72 -0
  33. intentkit/skills/supabase/delete_data.py +102 -0
  34. intentkit/skills/supabase/fetch_data.py +120 -0
  35. intentkit/skills/supabase/insert_data.py +70 -0
  36. intentkit/skills/supabase/invoke_function.py +74 -0
  37. intentkit/skills/supabase/schema.json +168 -0
  38. intentkit/skills/supabase/supabase.svg +15 -0
  39. intentkit/skills/supabase/update_data.py +105 -0
  40. intentkit/skills/supabase/upsert_data.py +77 -0
  41. intentkit/skills/system/read_agent_api_key.py +1 -1
  42. intentkit/skills/system/regenerate_agent_api_key.py +1 -1
  43. intentkit/skills/token/base.py +1 -39
  44. intentkit/skills/twitter/follow_user.py +3 -3
  45. intentkit/skills/twitter/get_mentions.py +6 -6
  46. intentkit/skills/twitter/get_timeline.py +5 -5
  47. intentkit/skills/twitter/get_user_by_username.py +3 -3
  48. intentkit/skills/twitter/get_user_tweets.py +5 -5
  49. intentkit/skills/twitter/like_tweet.py +3 -3
  50. intentkit/skills/twitter/post_tweet.py +4 -4
  51. intentkit/skills/twitter/reply_tweet.py +4 -4
  52. intentkit/skills/twitter/retweet.py +3 -3
  53. intentkit/skills/twitter/search_tweets.py +5 -5
  54. intentkit/skills/unrealspeech/text_to_speech.py +1 -1
  55. intentkit/skills/web_scraper/document_indexer.py +2 -2
  56. intentkit/skills/web_scraper/scrape_and_index.py +8 -8
  57. intentkit/skills/web_scraper/website_indexer.py +4 -4
  58. {intentkit-0.6.0.dev13.dist-info → intentkit-0.6.0.dev14.dist-info}/METADATA +1 -1
  59. {intentkit-0.6.0.dev13.dist-info → intentkit-0.6.0.dev14.dist-info}/RECORD +61 -51
  60. {intentkit-0.6.0.dev13.dist-info → intentkit-0.6.0.dev14.dist-info}/WHEEL +0 -0
  61. {intentkit-0.6.0.dev13.dist-info → intentkit-0.6.0.dev14.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,72 @@
1
+ from typing import Type
2
+
3
+ from langchain_core.tools import ToolException
4
+ from pydantic import BaseModel, Field
5
+
6
+ from intentkit.abstracts.skill import SkillStoreABC
7
+ from intentkit.skills.base import IntentKitSkill, SkillContext
8
+
9
+
10
+ class SupabaseBaseTool(IntentKitSkill):
11
+ """Base class for Supabase tools."""
12
+
13
+ name: str = Field(description="The name of the tool")
14
+ description: str = Field(description="A description of what the tool does")
15
+ args_schema: Type[BaseModel]
16
+ skill_store: SkillStoreABC = Field(
17
+ description="The skill store for persisting data"
18
+ )
19
+
20
+ @property
21
+ def category(self) -> str:
22
+ return "supabase"
23
+
24
+ def get_supabase_config(self, config: dict) -> tuple[str, str]:
25
+ """Get Supabase URL and key from config.
26
+
27
+ Args:
28
+ config: The agent configuration
29
+
30
+ Returns:
31
+ Tuple of (supabase_url, supabase_key)
32
+
33
+ Raises:
34
+ ValueError: If required config is missing
35
+ """
36
+ supabase_url = config.get("supabase_url")
37
+ supabase_key = config.get("supabase_key")
38
+
39
+ if not supabase_url:
40
+ raise ValueError("supabase_url is required in config")
41
+ if not supabase_key:
42
+ raise ValueError("supabase_key is required in config")
43
+
44
+ return supabase_url, supabase_key
45
+
46
+ def validate_table_access(self, table: str, context: SkillContext) -> None:
47
+ """Validate if the table can be accessed for write operations in public mode.
48
+
49
+ Args:
50
+ table: The table name to validate
51
+ context: The skill context containing configuration and mode info
52
+
53
+ Raises:
54
+ ToolException: If table access is not allowed in public mode
55
+ """
56
+ # If in private mode (owner mode), no restrictions apply
57
+ if context.is_private:
58
+ return
59
+
60
+ # In public mode, check if table is in allowed list
61
+ public_write_tables = context.config.get("public_write_tables", "")
62
+ if not public_write_tables:
63
+ return
64
+
65
+ allowed_tables = [
66
+ t.strip() for t in public_write_tables.split(",") if t.strip()
67
+ ]
68
+ if table not in allowed_tables:
69
+ raise ToolException(
70
+ f"Table '{table}' is not allowed for public write operations. "
71
+ f"Allowed tables: {', '.join(allowed_tables)}"
72
+ )
@@ -0,0 +1,102 @@
1
+ import logging
2
+ from typing import Any, Dict, Type
3
+
4
+ from langchain_core.runnables import RunnableConfig
5
+ from langchain_core.tools import ToolException
6
+ from pydantic import BaseModel, Field
7
+ from supabase import Client, create_client
8
+
9
+ from intentkit.skills.supabase.base import SupabaseBaseTool
10
+
11
+ NAME = "supabase_delete_data"
12
+ PROMPT = "Delete data from a Supabase table based on filtering conditions."
13
+
14
+ logger = logging.getLogger(__name__)
15
+
16
+
17
+ class SupabaseDeleteDataInput(BaseModel):
18
+ """Input for SupabaseDeleteData tool."""
19
+
20
+ table: str = Field(description="The name of the table to delete data from")
21
+ filters: Dict[str, Any] = Field(
22
+ description="Dictionary of filters to identify which records to delete (e.g., {'id': 123})"
23
+ )
24
+ returning: str = Field(
25
+ default="*",
26
+ description="Columns to return from deleted records (default: '*' for all)",
27
+ )
28
+
29
+
30
+ class SupabaseDeleteData(SupabaseBaseTool):
31
+ """Tool for deleting data from Supabase tables.
32
+
33
+ This tool allows deleting records from Supabase tables based on filter conditions.
34
+ """
35
+
36
+ name: str = NAME
37
+ description: str = PROMPT
38
+ args_schema: Type[BaseModel] = SupabaseDeleteDataInput
39
+
40
+ async def _arun(
41
+ self,
42
+ table: str,
43
+ filters: Dict[str, Any],
44
+ returning: str = "*",
45
+ config: RunnableConfig = None,
46
+ **kwargs,
47
+ ):
48
+ try:
49
+ context = self.context_from_config(config)
50
+
51
+ # Validate table access for public mode
52
+ self.validate_table_access(table, context)
53
+
54
+ supabase_url, supabase_key = self.get_supabase_config(context.config)
55
+
56
+ # Create Supabase client
57
+ supabase: Client = create_client(supabase_url, supabase_key)
58
+
59
+ # Start building the delete query
60
+ query = supabase.table(table).delete()
61
+
62
+ # Apply filters to identify which records to delete
63
+ for column, value in filters.items():
64
+ if isinstance(value, dict):
65
+ # Handle complex filters like {'gte': 18}
66
+ for operator, filter_value in value.items():
67
+ if operator == "eq":
68
+ query = query.eq(column, filter_value)
69
+ elif operator == "neq":
70
+ query = query.neq(column, filter_value)
71
+ elif operator == "gt":
72
+ query = query.gt(column, filter_value)
73
+ elif operator == "gte":
74
+ query = query.gte(column, filter_value)
75
+ elif operator == "lt":
76
+ query = query.lt(column, filter_value)
77
+ elif operator == "lte":
78
+ query = query.lte(column, filter_value)
79
+ elif operator == "like":
80
+ query = query.like(column, filter_value)
81
+ elif operator == "ilike":
82
+ query = query.ilike(column, filter_value)
83
+ elif operator == "in":
84
+ query = query.in_(column, filter_value)
85
+ else:
86
+ logger.warning(f"Unknown filter operator: {operator}")
87
+ else:
88
+ # Simple equality filter
89
+ query = query.eq(column, value)
90
+
91
+ # Execute the delete
92
+ response = query.execute()
93
+
94
+ return {
95
+ "success": True,
96
+ "data": response.data,
97
+ "count": len(response.data) if response.data else 0,
98
+ }
99
+
100
+ except Exception as e:
101
+ logger.error(f"Error deleting data from Supabase: {str(e)}")
102
+ raise ToolException(f"Failed to delete data from table '{table}': {str(e)}")
@@ -0,0 +1,120 @@
1
+ import logging
2
+ from typing import Any, Dict, Optional, Type
3
+
4
+ from langchain_core.runnables import RunnableConfig
5
+ from langchain_core.tools import ToolException
6
+ from pydantic import BaseModel, Field
7
+ from supabase import Client, create_client
8
+
9
+ from intentkit.skills.supabase.base import SupabaseBaseTool
10
+
11
+ NAME = "supabase_fetch_data"
12
+ PROMPT = "Fetch data from a Supabase table with optional filtering, ordering, and pagination."
13
+
14
+ logger = logging.getLogger(__name__)
15
+
16
+
17
+ class SupabaseFetchDataInput(BaseModel):
18
+ """Input for SupabaseFetchData tool."""
19
+
20
+ table: str = Field(description="The name of the table to fetch data from")
21
+ columns: Optional[str] = Field(
22
+ default="*",
23
+ description="Comma-separated list of columns to select (default: '*' for all)",
24
+ )
25
+ filters: Optional[Dict[str, Any]] = Field(
26
+ default=None,
27
+ description="Dictionary of filters to apply (e.g., {'column': 'value', 'age': {'gte': 18}})",
28
+ )
29
+ order_by: Optional[str] = Field(default=None, description="Column to order by")
30
+ ascending: bool = Field(
31
+ default=True, description="Whether to order in ascending order (default: True)"
32
+ )
33
+ limit: Optional[int] = Field(
34
+ default=None, description="Maximum number of records to return"
35
+ )
36
+ offset: Optional[int] = Field(
37
+ default=None, description="Number of records to skip for pagination"
38
+ )
39
+
40
+
41
+ class SupabaseFetchData(SupabaseBaseTool):
42
+ """Tool for fetching data from Supabase tables.
43
+
44
+ This tool allows querying Supabase tables with filtering, ordering, and pagination.
45
+ """
46
+
47
+ name: str = NAME
48
+ description: str = PROMPT
49
+ args_schema: Type[BaseModel] = SupabaseFetchDataInput
50
+
51
+ async def _arun(
52
+ self,
53
+ table: str,
54
+ columns: Optional[str] = "*",
55
+ filters: Optional[Dict[str, Any]] = None,
56
+ order_by: Optional[str] = None,
57
+ ascending: bool = True,
58
+ limit: Optional[int] = None,
59
+ offset: Optional[int] = None,
60
+ config: RunnableConfig = None,
61
+ **kwargs,
62
+ ):
63
+ try:
64
+ context = self.context_from_config(config)
65
+ supabase_url, supabase_key = self.get_supabase_config(context.config)
66
+
67
+ # Create Supabase client
68
+ supabase: Client = create_client(supabase_url, supabase_key)
69
+
70
+ # Start building the query
71
+ query = supabase.table(table).select(columns)
72
+
73
+ # Apply filters if provided
74
+ if filters:
75
+ for column, value in filters.items():
76
+ if isinstance(value, dict):
77
+ # Handle complex filters like {'gte': 18}
78
+ for operator, filter_value in value.items():
79
+ if operator == "eq":
80
+ query = query.eq(column, filter_value)
81
+ elif operator == "neq":
82
+ query = query.neq(column, filter_value)
83
+ elif operator == "gt":
84
+ query = query.gt(column, filter_value)
85
+ elif operator == "gte":
86
+ query = query.gte(column, filter_value)
87
+ elif operator == "lt":
88
+ query = query.lt(column, filter_value)
89
+ elif operator == "lte":
90
+ query = query.lte(column, filter_value)
91
+ elif operator == "like":
92
+ query = query.like(column, filter_value)
93
+ elif operator == "ilike":
94
+ query = query.ilike(column, filter_value)
95
+ elif operator == "in":
96
+ query = query.in_(column, filter_value)
97
+ else:
98
+ logger.warning(f"Unknown filter operator: {operator}")
99
+ else:
100
+ # Simple equality filter
101
+ query = query.eq(column, value)
102
+
103
+ # Apply ordering if provided
104
+ if order_by:
105
+ query = query.order(order_by, desc=not ascending)
106
+
107
+ # Apply pagination
108
+ if limit:
109
+ query = query.limit(limit)
110
+ if offset:
111
+ query = query.offset(offset)
112
+
113
+ # Execute the query
114
+ response = query.execute()
115
+
116
+ return {"success": True, "data": response.data, "count": len(response.data)}
117
+
118
+ except Exception as e:
119
+ logger.error(f"Error fetching data from Supabase: {str(e)}")
120
+ raise ToolException(f"Failed to fetch data from table '{table}': {str(e)}")
@@ -0,0 +1,70 @@
1
+ import logging
2
+ from typing import Any, Dict, List, Type, Union
3
+
4
+ from langchain_core.runnables import RunnableConfig
5
+ from langchain_core.tools import ToolException
6
+ from pydantic import BaseModel, Field
7
+ from supabase import Client, create_client
8
+
9
+ from intentkit.skills.supabase.base import SupabaseBaseTool
10
+
11
+ NAME = "supabase_insert_data"
12
+ PROMPT = "Insert new data into a Supabase table."
13
+
14
+ logger = logging.getLogger(__name__)
15
+
16
+
17
+ class SupabaseInsertDataInput(BaseModel):
18
+ """Input for SupabaseInsertData tool."""
19
+
20
+ table: str = Field(description="The name of the table to insert data into")
21
+ data: Union[Dict[str, Any], List[Dict[str, Any]]] = Field(
22
+ description="The data to insert. Can be a single object or a list of objects"
23
+ )
24
+ returning: str = Field(
25
+ default="*",
26
+ description="Columns to return after insertion (default: '*' for all)",
27
+ )
28
+
29
+
30
+ class SupabaseInsertData(SupabaseBaseTool):
31
+ """Tool for inserting data into Supabase tables.
32
+
33
+ This tool allows inserting single or multiple records into Supabase tables.
34
+ """
35
+
36
+ name: str = NAME
37
+ description: str = PROMPT
38
+ args_schema: Type[BaseModel] = SupabaseInsertDataInput
39
+
40
+ async def _arun(
41
+ self,
42
+ table: str,
43
+ data: Union[Dict[str, Any], List[Dict[str, Any]]],
44
+ returning: str = "*",
45
+ config: RunnableConfig = None,
46
+ **kwargs,
47
+ ):
48
+ try:
49
+ context = self.context_from_config(config)
50
+
51
+ # Validate table access for public mode
52
+ self.validate_table_access(table, context)
53
+
54
+ supabase_url, supabase_key = self.get_supabase_config(context.config)
55
+
56
+ # Create Supabase client
57
+ supabase: Client = create_client(supabase_url, supabase_key)
58
+
59
+ # Insert data
60
+ response = supabase.table(table).insert(data).execute()
61
+
62
+ return {
63
+ "success": True,
64
+ "data": response.data,
65
+ "count": len(response.data) if response.data else 0,
66
+ }
67
+
68
+ except Exception as e:
69
+ logger.error(f"Error inserting data into Supabase: {str(e)}")
70
+ raise ToolException(f"Failed to insert data into table '{table}': {str(e)}")
@@ -0,0 +1,74 @@
1
+ import logging
2
+ from typing import Any, Dict, Optional, Type
3
+
4
+ from langchain_core.runnables import RunnableConfig
5
+ from langchain_core.tools import ToolException
6
+ from pydantic import BaseModel, Field
7
+ from supabase import Client, create_client
8
+
9
+ from intentkit.skills.supabase.base import SupabaseBaseTool
10
+
11
+ NAME = "supabase_invoke_function"
12
+ PROMPT = "Invoke a Supabase Edge Function with optional parameters."
13
+
14
+ logger = logging.getLogger(__name__)
15
+
16
+
17
+ class SupabaseInvokeFunctionInput(BaseModel):
18
+ """Input for SupabaseInvokeFunction tool."""
19
+
20
+ function_name: str = Field(description="The name of the Edge Function to invoke")
21
+ parameters: Optional[Dict[str, Any]] = Field(
22
+ default=None, description="Optional parameters to pass to the function"
23
+ )
24
+ headers: Optional[Dict[str, str]] = Field(
25
+ default=None, description="Optional headers to include in the request"
26
+ )
27
+
28
+
29
+ class SupabaseInvokeFunction(SupabaseBaseTool):
30
+ """Tool for invoking Supabase Edge Functions.
31
+
32
+ This tool allows calling Supabase Edge Functions with optional parameters and headers.
33
+ """
34
+
35
+ name: str = NAME
36
+ description: str = PROMPT
37
+ args_schema: Type[BaseModel] = SupabaseInvokeFunctionInput
38
+
39
+ async def _arun(
40
+ self,
41
+ function_name: str,
42
+ parameters: Optional[Dict[str, Any]] = None,
43
+ headers: Optional[Dict[str, str]] = None,
44
+ config: RunnableConfig = None,
45
+ **kwargs,
46
+ ):
47
+ try:
48
+ context = self.context_from_config(config)
49
+ supabase_url, supabase_key = self.get_supabase_config(context.config)
50
+
51
+ # Create Supabase client
52
+ supabase: Client = create_client(supabase_url, supabase_key)
53
+
54
+ # Prepare function invocation parameters
55
+ invoke_options = {}
56
+ if parameters:
57
+ invoke_options["json"] = parameters
58
+ if headers:
59
+ invoke_options["headers"] = headers
60
+
61
+ # Invoke the Edge Function
62
+ response = supabase.functions.invoke(function_name, invoke_options)
63
+
64
+ return {
65
+ "success": True,
66
+ "data": response.json() if hasattr(response, "json") else response,
67
+ "status_code": getattr(response, "status_code", None),
68
+ }
69
+
70
+ except Exception as e:
71
+ logger.error(f"Error invoking Supabase Edge Function: {str(e)}")
72
+ raise ToolException(
73
+ f"Failed to invoke Edge Function '{function_name}': {str(e)}"
74
+ )
@@ -0,0 +1,168 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "title": "Supabase",
5
+ "description": "Integration with Supabase backend-as-a-service platform enabling database operations and Edge Function invocations",
6
+ "x-icon": "https://ai.service.crestal.dev/skills/supabase/supabase.png",
7
+ "x-tags": [
8
+ "Database",
9
+ "Backend"
10
+ ],
11
+ "properties": {
12
+ "enabled": {
13
+ "type": "boolean",
14
+ "title": "Enabled",
15
+ "description": "Whether this skill is enabled",
16
+ "default": false
17
+ },
18
+ "states": {
19
+ "type": "object",
20
+ "properties": {
21
+ "fetch_data": {
22
+ "type": "string",
23
+ "title": "Fetch Data",
24
+ "enum": [
25
+ "disabled",
26
+ "public",
27
+ "private"
28
+ ],
29
+ "x-enum-title": [
30
+ "Disabled",
31
+ "Agent Owner + All Users",
32
+ "Agent Owner Only"
33
+ ],
34
+ "description": "Fetch data from Supabase tables with filtering, ordering, and pagination support",
35
+ "default": "disabled"
36
+ },
37
+ "insert_data": {
38
+ "type": "string",
39
+ "title": "Insert Data",
40
+ "enum": [
41
+ "disabled",
42
+ "public",
43
+ "private"
44
+ ],
45
+ "x-enum-title": [
46
+ "Disabled",
47
+ "Agent Owner + All Users",
48
+ "Agent Owner Only"
49
+ ],
50
+ "description": "Insert new records into Supabase tables",
51
+ "default": "disabled"
52
+ },
53
+ "update_data": {
54
+ "type": "string",
55
+ "title": "Update Data",
56
+ "enum": [
57
+ "disabled",
58
+ "public",
59
+ "private"
60
+ ],
61
+ "x-enum-title": [
62
+ "Disabled",
63
+ "Agent Owner + All Users",
64
+ "Agent Owner Only"
65
+ ],
66
+ "description": "Update existing records in Supabase tables based on filter conditions",
67
+ "default": "disabled"
68
+ },
69
+ "upsert_data": {
70
+ "type": "string",
71
+ "title": "Upsert Data",
72
+ "enum": [
73
+ "disabled",
74
+ "public",
75
+ "private"
76
+ ],
77
+ "x-enum-title": [
78
+ "Disabled",
79
+ "Agent Owner + All Users",
80
+ "Agent Owner Only"
81
+ ],
82
+ "description": "Insert or update records in Supabase tables based on conflict resolution",
83
+ "default": "disabled"
84
+ },
85
+ "delete_data": {
86
+ "type": "string",
87
+ "title": "Delete Data",
88
+ "enum": [
89
+ "disabled",
90
+ "public",
91
+ "private"
92
+ ],
93
+ "x-enum-title": [
94
+ "Disabled",
95
+ "Agent Owner + All Users",
96
+ "Agent Owner Only"
97
+ ],
98
+ "description": "Delete records from Supabase tables based on filter conditions",
99
+ "default": "disabled"
100
+ },
101
+ "invoke_function": {
102
+ "type": "string",
103
+ "title": "Invoke Edge Function",
104
+ "enum": [
105
+ "disabled",
106
+ "public",
107
+ "private"
108
+ ],
109
+ "x-enum-title": [
110
+ "Disabled",
111
+ "Agent Owner + All Users",
112
+ "Agent Owner Only"
113
+ ],
114
+ "description": "Invoke Supabase Edge Functions with optional parameters and headers",
115
+ "default": "disabled"
116
+ }
117
+ },
118
+ "description": "States for each Supabase skill"
119
+ },
120
+ "api_key_provider": {
121
+ "type": "string",
122
+ "title": "API Key Provider",
123
+ "description": "Who provides the API key",
124
+ "enum": [
125
+ "agent_owner"
126
+ ],
127
+ "x-enum-title": [
128
+ "Owner Provided"
129
+ ],
130
+ "default": "agent_owner"
131
+ },
132
+ "supabase_url": {
133
+ "type": "string",
134
+ "title": "Supabase URL",
135
+ "description": "Your Supabase project URL (e.g., https://your-project.supabase.co)",
136
+ "format": "uri"
137
+ },
138
+ "supabase_key": {
139
+ "type": "string",
140
+ "title": "Supabase Anon Key",
141
+ "description": "Your Supabase project's anon/public key",
142
+ "format": "password"
143
+ },
144
+ "public_write_tables": {
145
+ "type": "string",
146
+ "title": "Public Write Tables",
147
+ "description": "Add tables split by comma, when insert,update,upsert,delete enabled in public use, they can only use tables from this list. When skills in owner mode, this list will not limit skills.",
148
+ "default": ""
149
+ }
150
+ },
151
+ "required": [
152
+ "states",
153
+ "enabled"
154
+ ],
155
+ "if": {
156
+ "properties": {
157
+ "enabled": {
158
+ "const": true
159
+ }
160
+ }
161
+ },
162
+ "then": {
163
+ "required": [
164
+ "supabase_url",
165
+ "supabase_key"
166
+ ]
167
+ }
168
+ }
@@ -0,0 +1,15 @@
1
+ <svg width="109" height="113" viewBox="0 0 109 113" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z" fill="url(#paint0_linear)"/>
3
+ <path d="M63.7076 110.284C60.8481 113.885 55.0502 111.912 54.9813 107.314L53.9738 40.0627L99.1935 40.0627C107.384 40.0627 111.952 49.5228 106.859 55.9374L63.7076 110.284Z" fill="url(#paint1_linear)" fill-opacity="0.2"/>
4
+ <path d="M45.317 2.07103C48.1765 -1.53037 53.9745 0.442937 54.0434 5.041L54.4849 72.2922H9.83113C1.64038 72.2922 -2.92775 62.8321 2.1655 56.4175L45.317 2.07103Z" fill="#3ECF8E"/>
5
+ <defs>
6
+ <linearGradient id="paint0_linear" x1="53.9738" y1="54.974" x2="94.1635" y2="71.8295" gradientUnits="userSpaceOnUse">
7
+ <stop stop-color="#249361"/>
8
+ <stop offset="1" stop-color="#3ECF8E"/>
9
+ </linearGradient>
10
+ <linearGradient id="paint1_linear" x1="36.1558" y1="30.578" x2="54.4844" y2="65.0806" gradientUnits="userSpaceOnUse">
11
+ <stop/>
12
+ <stop offset="1" stop-opacity="0"/>
13
+ </linearGradient>
14
+ </defs>
15
+ </svg>