auto-login

Automate web application login with test credentials and CAPTCHA bypass.

Updated Nov 22, 2025
One-click install
npx skills add https://github.com/jvtutorcorner-sketch/jvtutorcorner-rwd --skill auto-login
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: auto-login
Source: https://github.com/jvtutorcorner-sketch/jvtutorcorner-rwd/tree/main/.agents/skills/auto-login
Command: npx skills add https://github.com/jvtutorcorner-sketch/jvtutorcorner-rwd --skill auto-login

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the login process for testing environments by using pre-configured test accounts and a secure bypass secret, eliminating manual login steps and CAPTCHA challenges.

Core Features & Use Cases

  • Automated Login: Uses test credentials from .env.local to log in.
  • CAPTCHA Bypass: Leverages a LOGIN_BYPASS_SECRET to bypass CAPTCHA.
  • Role Support: Supports both 'teacher' and 'student' roles.
  • Use Case: An AI assistant can use this skill to log into a staging environment as a test teacher to verify new course creation features without manual intervention.

Quick Start

Use the auto-login skill to log in as a teacher using the test credentials.

Frequently Asked Questions about auto-login

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate login with test credentials in a testing environment?

Automating login with test credentials requires configuring predefined environment variables like LOGIN_BYPASS_SECRET and TEST_TEACHER_EMAIL in a file such as .env.local, allowing automated authentication into the web application without manual data entry.

Can I bypass CAPTCHA during automated authentication?

Bypassing CAPTCHA during automated authentication is achieved by leveraging a secure LOGIN_BYPASS_SECRET environment variable configured within your application, which skips manual verification steps for predefined test accounts.

Does this automated login approach support role-based access for teachers and students?

Role-based access for teachers and students is fully supported by reading specific environment variables such as TEST_TEACHER_EMAIL and TEST_STUDENT_PASSWORD, allowing the automated process to query distinct user profiles from a database or JSON file.

What environment variables do I need to configure for automated authentication?

Automated authentication requires configuring specific environment variables including LOGIN_BYPASS_SECRET for CAPTCHA bypass, TEST_TEACHER_EMAIL, and TEST_STUDENT_PASSWORD to properly query user profiles and handle role-based access.

When should I not use a bypass secret for automated login?

Using a bypass secret for automated login is not recommended outside of dedicated testing environments, as the predefined test credentials and LOGIN_BYPASS_SECRET are intended strictly for staging verification and bypassing production authentication controls poses security risks.