skills/fix-py-line-too-long/SKILL.md
--- name: fix-py-line-too-long description: Break into multiple lines using parentheses or brackets: category: Development & Code Tools source: openhands tags: [python, agent] url: https://github.com/OpenHands/OpenHands/blob/main/skills/fix-py-line-too-long.md --- # Instructions for fixing "E501 Line too long" ## For code lines Break into multiple lines using parentheses or brackets: ```python result = some_very_long_function_name( parameter1, parameter2, parameter3 ) ``` ## For single-
npx skillsauth add ranbot-ai/awesome-skills skills/fix-py-line-too-longInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Break into multiple lines using parentheses or brackets:
result = some_very_long_function_name(
parameter1, parameter2, parameter3
)
Use string concatenation: "ABC" → ("A" "B" "C")
message = ("This is a very long string "
"that needs to be broken up")
Add # noqa: E501 AFTER the ending """. NEVER add it inside the docstring.
def example_function():
"""This is a very long docstring that exceeds the line length limit.""" # noqa: E501
pass
# noqa: E501 inside docstrings or multi-line stringstesting
Fix SEO indexing issues, crawl budget problems, and Search Console coverage errors for Next.js apps. Covers canonical tags, noindex audits, sitemap health, static rendering, and internal linking.
data-ai
Analyze AI disruption pressure across a business, map competitive exposure, and produce a 90-day defensive action plan.
tools
--- name: longbridge description: 125+ agent skills for Longbridge Securities — real-time quotes, charts, fundamentals, portfolio analysis, options, and more for HK/US/A-share/SG markets. Trilingual: Simplified Chinese, Traditional category: AI & Agents source: antigravity tags: [api, mcp, claude, ai, agent, security, cro] url: https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/longbridge --- # Longbridge ## Overview Longbridge is the official skill collection for Longbr
tools
Design, debug, and harden GitHub Actions CI/CD workflows, including reusable workflows, matrix builds, self-hosted runners, OIDC authentication, caching, environments, secrets, and release automation.