— No reviews yet
0 installs
7 views
0.0% view→install
Install
$ agentstack add skill-fenixnix-godot-skills-godot-gdscript-grammar ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Godot Gdscript Grammar? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
godot-gdscript-grammar
何时使用
当用户需要GDScript语法详解和示例代码时使用此技能。
执行指示
- 提供GDScript语法的详细说明
- 回答用户关于GDScript语法规则、数据类型、控制流等问题
- 提供GDScript示例代码和最佳实践
输出格式
返回GDScript语法详解内容,包括代码示例和使用说明。
示例
用户请求: 我需要了解GDScript的函数定义语法。
执行过程:
- 查找GDScript函数定义相关内容
- 提供详细说明和示例代码
输出: GDScript函数定义语法:
# 基本函数定义
func my_function():
print("Hello from function")
# 带参数的函数
func add(a, b):
return a + b
# 带类型注解的函数
func multiply(a: int, b: int) -> int:
return a * b
# 带默认参数的函数
func greet(name: String = "World"):
print("Hello, %s!" % name)
# 可变参数函数
func sum_all(args...):
var total = 0
for arg in args:
total += arg
return total
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: fenixnix
- Source: fenixnix/Godot-Skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.