An advanced automation and monitoring suite for Arknights: Endfield via SKPort.
Features • Deployment • Commands • Configuration • Credentials
- Automated Attendance: Executes daily sign-ins across all configured accounts.
- Stamina Monitoring: Tracks current stamina and predicts exactly when it will reach maximum capacity using real-time regeneration logic.
- Daily Mission Reminders: Automated checks to ensure you haven't missed your daily mission rewards before the server reset.
- Interactive Terminal: Real-time insights into level, world level, BP progress, and daily mission activation.
- Discord & Telegram Integration: Full Slash Command and Bot support for both Discord and Telegram.
- Multi-Account: Manage multiple Arknights: Endfield accounts from a single instance.
- Headless Mode: Can run entirely via console logging or automated notifications, perfect for lightweight server hosting.
- Clone the Repository:
git clone https://github.com/torikushiii/endfield-auto.git cd endfield-auto
-
Install Dependencies:
bun install # or npm install -
Initialize Configuration: Copy the example config and fill in your details:
cp example.config.json config.json
-
Start the Assistant:
bun index.ts # or npm start
-
Initialize Configuration:
cp example.config.json config.json
Fill in your credentials in
config.jsonbefore proceeding. -
Start with Docker Compose:
docker compose up -d
For users who want automation without self-hosting.
- Navigate to
services/google-script/in this repository. - Follow the Setup Guide to deploy the standalone check-in service on Google's infrastructure.
The assistant provides powerful Discord Slash Commands for manual monitoring and operations.
| Command | Alias | Description |
|---|---|---|
/terminal <account> |
/stats, /stamina |
Displays full protocol status (Stamina, BP, Dailies, Progression). (Required) Choose a specific account or "All Accounts". |
/check-in |
/ci |
Manually triggers the daily attendance claim for all accounts. |
The config.json is the central brain of the assistant.
{
"accounts": [
{
"name": "Operator-Alpha",
"account_token": "YOUR_ACCOUNT_TOKEN",
"sk_game_role": "3_YOUR_UID_SERVER",
"settings": {
"stamina_check": true,
"stamina_threshold": -10,
"daily_check": true
}
}
],
"platforms": [
{
"id": "discord_bot",
"type": "discord",
"active": true,
"token": "BOT_TOKEN",
"botId": "APPLICATION_ID"
},
{
"id": "telegram_bot",
"type": "telegram",
"active": true,
"token": "TELEGRAM_BOT_TOKEN",
"chatId": "YOUR_CHAT_ID"
}
],
"crons": [
{
"name": "check-in",
"scheduleTime": "0 0 * * *"
},
{
"name": "stamina-check",
"scheduleTime": "*/30 * * * *"
},
{
"name": "daily-check",
"scheduleTime": "0 21 * * *"
}
]
}account_token: Your account token from browser cookies. Required for all features.sk_game_role: Your game role identifier in format3_UID_SERVER.stamina_check: Enable/Disable stamina monitoring for this account.stamina_threshold:- Use a positive number for an absolute threshold (e.g.,
200). - Use a negative number for a relative offset from max (e.g.,
-10will alert when you are 10 points away from capping).
- Use a positive number for an absolute threshold (e.g.,
daily_check: Enable/Disable daily mission reminders at the scheduled time.
To connect the assistant to your account:
- Log in to the SKPort Endfield Portal.
- Open Developer Tools (F12) → Application → Cookies.
- Find
ACCOUNT_TOKENand copy its value. - URL decode if needed (replace
%2Fwith/). - Add to config as
account_token.
Note: The account token is used to authenticate with Gryphline and obtain session credentials. Credentials are automatically refreshed every 30 minutes.
This is an unofficial tool and is not affiliated with Hypergryph, Gryphline, or SKPort. Use of this tool may violate the terms of service. The authors are not responsible for any consequences of using this tool.