gitextract_cxsqbwhp/ ├── .gitignore ├── .gitmodules ├── .root ├── App/ │ └── Action/ │ ├── Action/ │ │ ├── Action.entitlements │ │ ├── Application/ │ │ │ ├── Action.entitlements │ │ │ ├── ActionApp.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── AppSetup.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Avatar.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── License.txt │ │ │ ├── en.lproj/ │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hans.lproj/ │ │ │ └── Localizable.strings │ │ ├── Backend/ │ │ │ ├── Action/ │ │ │ │ ├── ActionManager+Artifact.swift │ │ │ │ ├── ActionManager+Event.swift │ │ │ │ ├── ActionManager+History.swift │ │ │ │ ├── ActionManager+Module.swift │ │ │ │ ├── ActionManager.swift │ │ │ │ ├── ActionModuleTemplates/ │ │ │ │ │ ├── ActionManager+Template.swift │ │ │ │ │ ├── Template+Executable.swift │ │ │ │ │ ├── Template+Node.swift │ │ │ │ │ ├── Template+Python.swift │ │ │ │ │ └── Template+Swift.swift │ │ │ │ └── ActionTemplates/ │ │ │ │ └── .templates │ │ │ ├── Config/ │ │ │ │ └── Config.swift │ │ │ ├── Executor/ │ │ │ │ └── Executor.swift │ │ │ ├── PasteboardManager/ │ │ │ │ ├── PasteboardManager+Event.swift │ │ │ │ └── PasteboardManager.swift │ │ │ └── StatusBarManager/ │ │ │ └── StatusBarManager.swift │ │ ├── Extension/ │ │ │ ├── AES.swift │ │ │ ├── Data.swift │ │ │ ├── DispatchQueue.swift │ │ │ ├── Notification.swift │ │ │ ├── Result.swift │ │ │ ├── Throttle.swift │ │ │ ├── UserDefault.swift │ │ │ └── View.swift │ │ └── Interface/ │ │ ├── ActionModule/ │ │ │ ├── ModuleCreateView.swift │ │ │ ├── ModuleEditView.swift │ │ │ ├── ModuleElementView.swift │ │ │ ├── ModuleImportView.swift │ │ │ └── ModuleManageView.swift │ │ ├── Effect/ │ │ │ └── RandomCodeTextView.swift │ │ ├── Generic/ │ │ │ ├── ApplicationView.swift │ │ │ ├── DiagnosticLogView.swift │ │ │ ├── HistoryView.swift │ │ │ ├── LicenseView.swift │ │ │ ├── MainView.swift │ │ │ ├── SettingView.swift │ │ │ ├── SidebarView.swift │ │ │ └── WelcomeView.swift │ │ ├── Menubar/ │ │ │ ├── Menubar.swift │ │ │ └── MenubarView.swift │ │ └── Toast/ │ │ └── Toast.swift │ └── Action.xcodeproj/ │ └── project.pbxproj ├── App.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── External/ │ ├── AuxiliaryExecute/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources/ │ │ │ └── AuxiliaryExecute/ │ │ │ ├── AuxiliaryExecute+Async.swift │ │ │ ├── AuxiliaryExecute+Shell.swift │ │ │ ├── AuxiliaryExecute+Spawn.swift │ │ │ └── AuxiliaryExecute.swift │ │ └── Tests/ │ │ └── AuxiliaryExecuteTests/ │ │ └── AuxiliaryExecuteTests.swift │ ├── Colorful/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Package.swift │ │ ├── README.md │ │ └── Sources/ │ │ └── Colorful/ │ │ ├── Colorful.swift │ │ ├── ColorfulView.swift │ │ └── PointRandomization.swift │ ├── KeychainAccess/ │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Examples/ │ │ │ └── Example-iOS/ │ │ │ ├── Example-iOS/ │ │ │ │ ├── AccountsViewController.swift │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Example-iOS.entitlements │ │ │ │ ├── Images.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ └── InputViewController.swift │ │ │ └── Example-iOS.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Example-iOS.xcscheme │ │ ├── KeychainAccess.podspec │ │ ├── KeychainAccess.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── LICENSE │ │ ├── Lib/ │ │ │ ├── Certificates/ │ │ │ │ ├── KeychainAccess_Tests.provisionprofile.enc │ │ │ │ ├── apple.cer │ │ │ │ ├── developer_id_app.p12.enc │ │ │ │ ├── iOS_Development.mobileprovision.enc │ │ │ │ ├── ios_developer.p12.enc │ │ │ │ └── tvOS_Development.mobileprovision.enc │ │ │ ├── Configurations/ │ │ │ │ ├── Base.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── KeychainAccess.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ ├── TestHost.xcconfig │ │ │ │ └── Tests.xcconfig │ │ │ ├── Gemfile │ │ │ ├── KeychainAccess/ │ │ │ │ ├── Info.plist │ │ │ │ ├── Keychain.swift │ │ │ │ └── KeychainAccess.h │ │ │ ├── KeychainAccess.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── KeychainAccess.xcscheme │ │ │ │ └── TestHost.xcscheme │ │ │ ├── KeychainAccessTests/ │ │ │ │ ├── EnumTests.swift │ │ │ │ ├── ErrorTypeTests.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── KeychainAccessTests.swift │ │ │ │ └── SharedCredentialTests.swift │ │ │ ├── Rakefile │ │ │ ├── Scripts/ │ │ │ │ ├── add_key.sh │ │ │ │ └── decode_cert.sh │ │ │ ├── TestHost/ │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ └── TestHost.entitlements │ │ │ └── TestHost-MacCatalyst/ │ │ │ ├── KeychainAccessTests-MacCatalyst/ │ │ │ │ ├── EnumTests.swift │ │ │ │ ├── ErrorTypeTests.swift │ │ │ │ ├── Info.plist │ │ │ │ └── KeychainAccessTests.swift │ │ │ ├── TestHost-MacCatalyst/ │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets/ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── SceneDelegate.swift │ │ │ │ ├── TestHost-MacCatalyst.entitlements │ │ │ │ └── ViewController.swift │ │ │ └── TestHost-MacCatalyst.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── TestHost-MacCatalyst.xcscheme │ │ ├── Package.swift │ │ ├── Package@swift-5.3.swift │ │ ├── README.md │ │ └── Sources/ │ │ └── Keychain.swift │ └── SymbolPicker/ │ ├── .gitignore │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ └── Sources/ │ └── SymbolPicker/ │ ├── Resources/ │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── sfsymbols.txt │ │ └── zh_CN.lproj/ │ │ └── Localizable.strings │ └── SymbolPicker.swift ├── LICENSE ├── README.md └── Resources/ ├── ModuleSample/ │ ├── Module Export - Link Cleaner/ │ │ ├── .ActionManifest.plist │ │ ├── .gitignore │ │ ├── .supplement/ │ │ │ ├── Binary/ │ │ │ │ └── CommandLineBridge/ │ │ │ │ ├── CommandLineBridge/ │ │ │ │ │ └── main.swift │ │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── CommandLineBridge.xcscheme │ │ │ ├── Communicator/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Communicator/ │ │ │ │ ├── Communicator.h │ │ │ │ ├── Communicator.m │ │ │ │ └── include/ │ │ │ │ └── Communicator.h │ │ │ ├── Definition/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Definition/ │ │ │ │ └── Definition.swift │ │ │ ├── compile.sh │ │ │ └── launch.sh │ │ ├── App.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Source/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources/ │ │ └── Source/ │ │ ├── CleanerRule/ │ │ │ ├── CleanerRule.swift │ │ │ ├── Rule+BiliBili.swift │ │ │ └── Rule+Twitter.swift │ │ └── Source.swift │ ├── Module Export - Multiline Init Formatter/ │ │ ├── .ActionManifest.plist │ │ ├── .gitignore │ │ ├── .supplement/ │ │ │ ├── Binary/ │ │ │ │ └── CommandLineBridge/ │ │ │ │ ├── CommandLineBridge/ │ │ │ │ │ └── main.swift │ │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── CommandLineBridge.xcscheme │ │ │ ├── Communicator/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Communicator/ │ │ │ │ ├── Communicator.h │ │ │ │ ├── Communicator.m │ │ │ │ └── include/ │ │ │ │ └── Communicator.h │ │ │ ├── Definition/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Definition/ │ │ │ │ └── Definition.swift │ │ │ ├── compile.sh │ │ │ └── launch.sh │ │ ├── App.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Source/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources/ │ │ └── Source/ │ │ └── Source.swift │ ├── Module Export - Quick SFImage/ │ │ ├── .ActionManifest.plist │ │ ├── .gitignore │ │ ├── .supplement/ │ │ │ ├── Binary/ │ │ │ │ └── CommandLineBridge/ │ │ │ │ ├── CommandLineBridge/ │ │ │ │ │ └── main.swift │ │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── CommandLineBridge.xcscheme │ │ │ ├── Communicator/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Communicator/ │ │ │ │ ├── Communicator.h │ │ │ │ ├── Communicator.m │ │ │ │ └── include/ │ │ │ │ └── Communicator.h │ │ │ ├── Definition/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Definition/ │ │ │ │ └── Definition.swift │ │ │ ├── compile.sh │ │ │ └── launch.sh │ │ ├── App.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Source/ │ │ ├── .gitignore │ │ ├── Package.swift │ │ └── Sources/ │ │ └── Source/ │ │ └── Source.swift │ └── Module Export - Speak Dictionary/ │ ├── .ActionManifest.plist │ ├── .gitignore │ ├── .supplement/ │ │ ├── Binary/ │ │ │ └── CommandLineBridge/ │ │ │ ├── CommandLineBridge/ │ │ │ │ └── main.swift │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── CommandLineBridge.xcscheme │ │ ├── Communicator/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Communicator/ │ │ │ ├── Communicator.h │ │ │ ├── Communicator.m │ │ │ └── include/ │ │ │ └── Communicator.h │ │ ├── Definition/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Definition/ │ │ │ └── Definition.swift │ │ ├── compile.sh │ │ └── launch.sh │ ├── App.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── Source/ │ ├── .gitignore │ ├── Package.swift │ └── Sources/ │ └── Source/ │ └── Source.swift ├── ModuleTemplate/ │ ├── .templates │ ├── Executable/ │ │ ├── ActionBeeModule.exec │ │ └── Put your binary here │ ├── ExecutableSwift/ │ │ ├── .gitignore │ │ ├── .supplement/ │ │ │ ├── Binary/ │ │ │ │ └── CommandLineBridge/ │ │ │ │ ├── CommandLineBridge/ │ │ │ │ │ └── main.swift │ │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ └── CommandLineBridge.xcscheme │ │ │ ├── Communicator/ │ │ │ │ ├── .gitignore │ │ │ │ ├── Package.swift │ │ │ │ └── Sources/ │ │ │ │ └── Communicator/ │ │ │ │ ├── Communicator.h │ │ │ │ ├── Communicator.m │ │ │ │ └── include/ │ │ │ │ └── Communicator.h │ │ │ └── Definition/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Definition/ │ │ │ └── Definition.swift │ │ ├── App.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Source/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Source/ │ │ │ └── Source.swift │ │ └── compile.command │ ├── SourceNode/ │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .supplement/ │ │ │ └── compile.sh │ │ ├── package.json │ │ ├── src/ │ │ │ ├── global.d.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── SourcePython/ │ │ └── main.py │ └── SourceSwift/ │ ├── .gitignore │ ├── .supplement/ │ │ ├── Binary/ │ │ │ └── CommandLineBridge/ │ │ │ ├── CommandLineBridge/ │ │ │ │ └── main.swift │ │ │ └── CommandLineBridge.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── CommandLineBridge.xcscheme │ │ ├── Communicator/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Communicator/ │ │ │ ├── Communicator.h │ │ │ ├── Communicator.m │ │ │ └── include/ │ │ │ └── Communicator.h │ │ ├── Definition/ │ │ │ ├── .gitignore │ │ │ ├── Package.swift │ │ │ └── Sources/ │ │ │ └── Definition/ │ │ │ └── Definition.swift │ │ ├── compile.sh │ │ └── launch.sh │ ├── App.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── Source/ │ ├── .gitignore │ ├── Package.swift │ └── Sources/ │ └── Source/ │ └── Source.swift └── Scripts/ ├── NewlineDeduplicate.swift ├── PackTemplates.sh ├── UpdateGitHub.sh └── UpdateLicenses.sh